jump to navigation

Noise is dead, long live noise! August 31, 2008

Posted by winden in coding, demoscene.
2 comments

Apparently Perlin noise, even the real Ken Perlin one that no demoscener ever uses due to being too compute intensive, is long dead in the high end and has been replaced by wavelet noise.

What I find really amazing is that all these variants shown on the paper describing good noise look somewhat different to the naked eye but are amazingly different when analyzed via frequencies at page 7.

I think it may be cool to try doing inverse noise synthesis by creating an spectral texture and doing an inverse frequency transform, something that I remember hearing was sometimes done for sound synthesis.

ps. paper found via the Pixar online library

Shaving bits off a float, the shiny way August 30, 2008

Posted by winden in coding, demoscene.
2 comments

One of the most used tricks for space optimization on 4k intros is to mangle floating point values on the executables before compressing.

Recap on standard floating point number storage

To recap, a float is stored in memory using 4 bytes, with bit-fields packed like this:

  • 1 bit for sign, s
  • 8 bits for exponent, e
  • 23 bits for mantissa, m

The exponent is stored with 127 added to it, so the final value is basically

  • value = power(2, e – 127) * (1.0 + m)

What this means is that the exponent is used to select which bracket to use:

  • e = 125 –> value is between 0.25 and 0.5
  • e = 126 –> value is between 0.5 and1
  • e = 127 –> value is between 1 and 2
  • e = 128 –> value is between 2 and 4
  • e = 129 –> value is betweem 4 and 8

And then the mantissa is used to select a number inside than bracket.

Shaving off bits

Compressor engines work by detecting repeating patterns and encoding them in non-obvious ways. The most obvious pattern to detect are strings of zero bits or zero bytes.

That can be used in our advantage: the executable or datafile will compress better if there are many zero bytes, and that is easy to do if we somehow force some bits on the float values to zero. Let’s say we blank out the 2 lower bytes on a float. That means that we end up with this floating point representation:

  • 1 bit for sign
  • 8 bits for exponent
  • 7 bits for mantissa

You could say that this forces us to use numbers other than what we wanted, but that was already the case since floats are only an approximation. How do you store π on a normal float? You can’t, since a float is just a 23-binary digits approximation to the value we want!

I really need a value that is not available by using fewer bits… Help!

That’s so wrong it hurts, you don’t really need them for making a demo. A demo is created by faking, fudging and tweaking until it looks good. You can probably achieve what you want by mangling either that number, another number or the whole formula in a random way.

How to shave bits, the shiny way (aka “in the future the compilers will obsolete the coders”)

Ideally, we would want to automate the whole process of shaving off bytes. One of the nicest parts of C++ is that compilers can detect and eliminate operations at compile time if they can prove that the result will be the same as doing it at run time. Given C++ templates and reasonably modern C++ compilers such as gcc 4, we can try this way:

class f16 {
private:
union {
mutable unsigned int _iv;
mutable float _v;
};
public:
inline f16(float const v) {
_v = v;
_iv = _iv & mask;
}
inline operator float() const {
return _v;
}
inline operator unsigned int() const {
return _iv;
}
};

What is happening here is that we create an object from a float, and the constructor stores that value with the lower 16 bits forced to zero. As the real storage place is marked as private and thus hidden from any other code, the compiler is able to optimise it and the resulting executable only has the masked value.

How to shave bits, the reliable way (aka “compilers are evil and does things behind my back”)

A big problem with the previous method is that it depends on the compiler realizing that he can optimize the code that way. If you need to be sure that the compiler only stores truncated numbers in the executable, the easiest way is to simply never feed him numbers other than the ones that are already in the format we want.

There are two ways:

  1. Place the proper numbers my hand or by preprocessor macros
  2. Make a filter that reads the source code, detects the floating point values and outputs the code to another file with truncated numbers.

How to shave bits, the backhanded way (aka “compilers are dumb, I better fix their output afterwards”)

Nowadays the leading executable compressor Crinkler is capable of automatically truncating bits. This is done by using the name of the variable as a hint to the compressor, which dutifully takes the variable and masks off lower bits before starting to compress anything. While nice and really automatic, I’d consider this a catch-all rule and just use any of the previous techniques in addition to achieve better control of the numbers.

Relevant links:

Wikipedia article on floating point numbers

IQ/RGBA article on truncating floating point numbers by hand

in4k article on truncating floating point numbers both by hand and by script

Crinkler executable linker and compressor

Reducing number of divisions for polygon mappers – part 5 April 26, 2008

Posted by winden in coding, demoscene.
1 comment so far

NOTE: moving to my new winden homepage

Reducing number of divisions for polygon mappers – part 4 March 29, 2008

Posted by winden in coding, demoscene.
5 comments

NOTE: moving to my new winden homepage

Reducing number of divisions for polygon mappers – part 3 March 27, 2008

Posted by winden in coding, demoscene.
add a comment

NOTE: moving to my new winden homepage

Reducing number of divisions for polygon mappers – part 2 March 24, 2008

Posted by winden in coding, demoscene.
3 comments

NOTE: moving to my new winden homepage

Reducing number of divisions for polygon mappers – part 1 March 23, 2008

Posted by winden in coding, demoscene.
add a comment

NOTE: moved to my new winden homepage

Fixed point arithmetics article August 26, 2007

Posted by winden in coding, demoscene.
1 comment so far

So, I feel a bit dumb about having named my blog “software rendering world” and not having provided any links to tutorials or information about fixed point arithmetics, which are really important to this whole fields (and even more so in the small machines like amiga or gp32 consoles). Luckily the ADA comunity setup a nice wiki some weeks ago and I’ve just finished writting and uploading an article with a very practical vision of how to learn to do these calculations. Enjoy!

ps. I know wikipedia has an article on it, but its linked papers are soooo full of scary math, it’s no wonder nowdays people think that fixepoint is difficult!

links: fixed point tutorial on Amiga Coding Archive

Not the usual “copy Paul Bourkes lookup table” marching cubes approach July 26, 2007

Posted by winden in coding, demoscene, Linklog.
2 comments

A routine to die for for sure: rapo diablo 5000 with realtime raytracing on 50mhz machines

japanese dictionary – part 1 April 5, 2007

Posted by winden in coding, japanese.
add a comment

Here is a first cut at my japanese dictionary. Only tested it on OSX, please feedback if you test on any other unix systems. It uses a small part of the EDICT files from the monash japanese ftp archive. Oh yes, the multitap input method works by using numbers 0-9 and the comma. just toy a bit with it, then press enter two times to start the search. BTW, unicode rules!