Tag Info

New answers tagged

1

Since I researched this in the past, I will post some code I had converted previously that may help you. This is basically the bare minimum of what you can do to achieve this effect. You will most likely want to add damping, and effects such as braking etc. It also works on a system where you only have two tires, one in front and one in back. The code ...


0

Doom itself had little to nothing to do with the command line. They actually had APIs to do graphics back then, much of the use written ones use the method Stephan explained. I've also seen command line graphics done in C++ though, but it had to do with lots of code. None of this is possible in C#. Anyway if you want to do graphics why bother with the ...


2

Games like Doom ran in 16 bit real mode under DOS. In this environment, there were system calls, called interrupts, that you could call to switch the display into several graphics modes. The most popular at the time was mode 13h. It was called this, because you called interrupt 10h (h specify that this is a base 16 number), with register al loaded with 13h, ...


3

Note: I'm gonna use the term "pixel" here to refer to a unit of land in your height map. I'll assume your definition of noise are groups of land pixel are that smaller than certain size and you want these removed (turned into water). In that case, a simple method may be just counting the total number of connected pixels (size) for each group of land ...



Top 50 recent answers are included