Thursday, December 29, 2011

photo fun

Made some time ago with iPhone during attendance of SIGGRAPH'11. I am not saying that it is bad but fun:



and it's details:


Would be interesting to see more...

Wednesday, December 28, 2011

Рисуем и понимаем красиво

Довольно часто окружающие и коллеги спрашивают о деталях той либо иной графической "фичи" - в чем особенность "Ambient Occlusion" , "Lens Flares" или в чем важность тени и больше, почему динамическая...
По-хорошему, надо бы самому сесть и описать все и в примерах. Останавливает только большое количество уже готового, но разбросанного по разным частям и источникам материала или банальная лень...
Однако хочется исправиться и буквально на днях, нашел довольно достойное описание и на примере недавно выпущеной игрушки, сама игрушка хоть и на UT3 движке, но все же - конечный продукт...
Вообщем читайте, вникайте и не говорите что не видели ( я уже вроде как занес эту ссылку в закладки ) : http://www.geforce.com/Optimize/Guides/batman-arkham-city-graphics-breakdown-and-performance-guide

Если будет нужно и интересно - могу расшарить свои закладки, они полу-публичные и на внешнем сайте :)

PS а не реверснуть ли эту "мышь"?

Не с PhysicX конечно - там даже SDK публично доступен, да и тема эта достаточно проработана...но это уже другой блог/разговор...

Monday, December 12, 2011

OpenGL and shadows

simple and not? let's see, initial details ( Wikipedia is reasonably good already) Shadow_volume and Shadow_mapping but still need more details ? No problems , for iOS (and Android) , see dEngine and shadows   ,  Android and shadow and at the home site of  PowerVR

Not yet satisfied? Than have a look here Variance Shadow Mapping

did I miss something?

Please dont say that it doesnt work - proven to work...

Sunday, November 13, 2011

simplicity of emulation

If everything would be "black and white" , I'm pretty sure that this would help to some extend.
Emulation of retro computers (like ZX Spectrum) looks to be just straight forward if only to follow documentation and theoretical aspects, 
the other question: would be such emulation efficient and more importantly - practical to use?

Here is one description ( ULA stands for uncommitted logic array ):

If the processor reads from a non-existing IN port, for instance FF, the ULA won't stop, but nothing will put anything on the data bus. Therefore, you'll read a mixture of FFs (idle bus), and screen and ATTR data bytes (the latter being very scarce, by the way). This will only happen when the ULA is reading the screen memory, about 60% of the 1/50th second time slice in which a frame is generated. The other 40% the ULA is building the border or generating a vertical retrace. This behaviour is actually used in some programs, for instance, in Arkanoid.

Finally, there is an interesting bug in the ULA which also has to do with this split bus. After each instruction fetch cycle of the processor, the processor puts the I-R register "pair" (not the 8 bit internal Instruction Register, but the Interrupt and R registers) on the address bus. The lowest 7 bits, the R register, are used for memory refresh. However, the ULA gets confused if I is in the range 64-127, because it thinks the processor wants to read from lower 16K ram very, very often. The ULA can't cope with this read-frequency, and regularly misses a screen byte. Instead of the actual byte, the byte previously read is used to build up the video signal. The screen seems to be filled with 'snow'; however, the Spectrum won't crash, and program will continue to run normally. One program which uses this to generate a nice effect is Vectron (which has very nice music too, by the way).

The 50 Hz interrupt is synchronized with the video signal generation by the ULA; both the interrupt and the video signal are generated by it. Many programs use the interrupt to synchronize with the frame cycle. Some use it to generate fantastic effects, such as full-screen characters, full-screen horizon (Aquaplane) or pixel colour (Uridium for instance). Very many modern programs use the fact that the screen is "written" (or "fired") to the CRT in a finite time to do as much time-consuming screen calculations as possible without causing character flickering: although the ULA has started displaying the screen for this frame already, the electron beam will for a moment not "pass" this or that part of the screen so it's safe to change something there. So the exact time in the 1/50 second time-slice at which the screen is updated is very important. Each line takes exactly 224 T states.




As you can see all details - you can also notice that some of such bugs/features(?) been used within applications(bold text).
Which obviously means: would like to run all applications - think about ALL features, including undocumented (unplanned) features and its proper support...

Full reserving of such details just a matter of time: years, dozen of years, even more...
should I say - stay tune for full support across all applications?

PS: quite good book, came out at 2010: http://www.zxdesign.info/book/
and ZX spectrum came out 1982...



Saturday, November 5, 2011

an idea reconstruction

At some point, having already functional code is good and even perfect,
however try to understand precisely big idea implemented:
    synchronized void updateAudio(int tstates, int value) {
        tstates = tstates - audiotstates;
        audiotstates += tstates;
        float time = tstates;

        synchronized (beeper) {
            if (time + timeRem > spf) {
                level += ((spf - timeRem) / spf) * value;
                time -= spf - timeRem;
                lastLevel = (lastLevel + level) >>> 1;
                beeper[bufp++] = lastLevel;
            } else {
                timeRem += time;
                level += (time / spf) * value;
                return;
            }

            while (time > spf) {
                lastLevel = (lastLevel + value) >>> 1;
                beeper[bufp++] = lastLevel;
                time -= spf;
            }
        }

        // calculamos el nivel de sonido de la parte residual de la muestra
        // para el prуximo cambio de estado
        level = (int) (value * (time / spf));
        timeRem = time;
    }

 Now, can you write the own implementation?

time to start?

yet thinking...
concurrently starting ...

stay tune...

NB: http://blog-services-review.toptenreviews.com/