scene.org File Archive

File download

<root>­/­parties­/­2017­/­dkd20v­/­demo/jml-ahdistaako.zip

File size:
8 495 810 bytes (8.10M)
File date:
2017-09-20 22:55:47
Download count:
all-time: 90

Preview

  • jml-ahdistaako/ dir
  • jml-ahdistaako/.DS_Store 8.00K
  • jml-ahdistaako/data/ dir
  • jml-ahdistaako/data/.DS_Store 8.00K
  • jml-ahdistaako/data/ahdistaako.ogg 2.16M
  • jml-ahdistaako/data/ahdistaako.png 2.98K
  • jml-ahdistaako/data/balloon.png 39.59K
  • jml-ahdistaako/data/burn.mtl 240B
  • jml-ahdistaako/data/burn.obj 33.04K
  • jml-ahdistaako/data/earth.mtl 159B
  • jml-ahdistaako/data/earth.obj 58.40K
  • jml-ahdistaako/data/earth.png 589.58K
  • jml-ahdistaako/data/earthmap1k.jpg 336.02K
  • jml-ahdistaako/data/empty.png 2.74K
  • jml-ahdistaako/data/js/ dir
  • jml-ahdistaako/data/js/Demo - Copy.js 14.40K
  • jml-ahdistaako/data/js/Demo.js 35.19K
  • jml-ahdistaako/data/js/engine.js 44.02K
  • jml-ahdistaako/data/js/script.js 227B
  • jml-ahdistaako/data/noise.png 1.01M
  • jml-ahdistaako/data/party2.ogv 2.82M
  • jml-ahdistaako/data/shader/ dir
  • jml-ahdistaako/data/shader/blood.fs 397B
  • jml-ahdistaako/data/shader/brightnesscontrast.fs 390B
  • jml-ahdistaako/data/shader/desaturate.fs 400B
  • jml-ahdistaako/data/shader/distortion - Copy.fs 2.75K
  • jml-ahdistaako/data/shader/distortion.fs 2.78K
  • jml-ahdistaako/data/shader/edgeglow.fs 1.18K
  • jml-ahdistaako/data/shader/fire.fs 2.59K
  • jml-ahdistaako/data/shader/glow.fs 722B
  • jml-ahdistaako/data/shader/hackglow.fs 2.54K
  • jml-ahdistaako/data/shader/mirrorscroll.fs 527B
  • jml-ahdistaako/data/shader/mirrorscroll.txt 390B
  • jml-ahdistaako/data/shader/noise.fs 446B
  • jml-ahdistaako/data/shader/scanline.fs 518B
  • jml-ahdistaako/data/shader/scroll.fs 353B
  • jml-ahdistaako/data/shader/starfield.fs 1.13K
  • jml-ahdistaako/data/shader/starfield2.fs 1.13K
  • jml-ahdistaako/data/shader/starfield2.txt 1.13K
  • jml-ahdistaako/data/shader/territory.fs 1.76K
  • jml-ahdistaako/data/shader/tile.fs 260B
  • jml-ahdistaako/data/shader/tile.txt 141B
  • jml-ahdistaako/data/shader/tunnel.fs 667B
  • jml-ahdistaako/data/shader/tunnel2.fs 926B
  • jml-ahdistaako/data/t0.png 7.79K
  • jml-ahdistaako/data/t1.png 4.20K
  • jml-ahdistaako/data/t2.png 3.63K
  • jml-ahdistaako/data/t3.png 9.82K
  • jml-ahdistaako/data/t4.png 4.01K
  • jml-ahdistaako/data/t5.png 7.92K
  • jml-ahdistaako/data/t6.png 3.42K
  • jml-ahdistaako/data/t7.png 3.89K
  • jml-ahdistaako/data/t8.png 4.48K
  • jml-ahdistaako/data/t9.png 2.44K
  • jml-ahdistaako/data/vignette.png 42.48K
  • jml-ahdistaako/data/white.png 4.33K
  • jml-ahdistaako/libgcc_s_dw2-1.dll 105.00K
  • jml-ahdistaako/libogg-0.dll 66.02K
  • jml-ahdistaako/libpng13.dll 56.00K
  • jml-ahdistaako/libtheora-0.dll 363.79K
  • jml-ahdistaako/libvorbis-0.dll 199.21K
  • jml-ahdistaako/penis2.exe 853.51K
  • jml-ahdistaako/SDL.dll 296.50K
  • jml-ahdistaako/SDL_mixer.dll 134.50K
  • jml-ahdistaako/stdout.txt 31.28K
  • jml-ahdistaako/test.txt 424B
  • jml-ahdistaako/zlib1.dll 33.00K

file_id.diz

uniform sampler2D texture;
uniform float time = 1.0;
void main()
{
	float t = time;
    
	vec2 uv = gl_TexCoord[0].xy;
    
    uv.x += step(uv.x, 0.5) * (0.5-uv.x) * 2.0;
    uv.y += step(uv.y, 0.5) * (0.5-uv.y) * 2.0;
    
    uv.x -= cos(t/20.0) * 0.5; //step(sin(t),0.2);
    uv.y -= sin(t/5.0) * 1.5; //step(sin(t),0.2);
    
	gl_FragColor = texture2D(texture, uv);   
}#version 120

uniform sampler2D texture;


uniform float time = 1.0;



void main()
{
	vec2 coord = gl_TexCoord[0].st;

    vec2 position = ( coord.xy)-vec2(0.5,0.5);

        // 256 angle steps
        float angle = atan(position.y,position.x)/(2*3.14159265359);
        angle -= floor(angle);
        float rad = length(position);
        
        float color = 0.0;
        for (int i = 0; i < 2; i++) {
            float angleFract = fract(angle*36.);
            float angleRnd = floor(angle*360.)+1.;
            float angleRnd1 = fract(angleRnd*fract(angleRnd*.7235)*45.1);
            float angleRnd2 = fract(angleRnd*fract(angleRnd*.82657)*13.724);
            float t = time+angleRnd1*100.;
            float radDist = sqrt(angleRnd2+float(i));
            
            float adist = radDist/rad*1.5;
            float dist = (t*.2+adist);
            dist = abs(fract(dist)-.1);
            color += max(0.,.8-dist*100./adist)*(.5-abs(angleFract-.5))*5./adist/radDist;
            
            angle = fract(angle);
        }
    
    
    
    
    
    


	gl_FragColor = vec4(color,color,color,color);
}uniform sampler2D texture;


void main() 
{
   	vec2 coord = gl_TexCoord[0].xy;
   



	gl_FragColor = texture2D(texture,coord);
}[0:00.000] 24E8 system/io/io.c:setStartPath():36:
Start path: ''
[0:00.000] 24E8 system/datatypes/memory.c:memoryInit():114:
Initializing memory
[0:00.000] 24E8 system/javascript/javascript.c:jsInit():226:
Initializing scripting.
[0:00.000] 24E8 system/main.c:handleCommandLineArguments():89:
User requested resolution: 1280x720
[0:00.000] 24E8 system/main.c:SDL_main():334:
Demo engine version 0.5.0 (Build Oct 29 2016 14:00:12)
[0:00.000] 24E8 system/ui/window/window.c:windowInit():49:
Window dimensions: 1280x720
[0:00.000] 24E8 system/ui/window/window.c:windowInit():50:
Screen dimensions: 1280x720
[0:00.000] 24E8 system/ui/window/window.c:windowInit():51:
Screen aspect: 1.78
[0:00.000] 24E8 system/ui/window/window.c:windowInit():52:
Screen area: x:0, y:0, w:1280, h:720
[0:00.000] 24E8 system/thread/thread.c:threadInit():412:
No multithreading in use.
[0:00.000] 24E8 system/main.c:systemInit():201:
Extension and remaining initializations started.
[0:00.000] 24E8 system/extensions/gl/gl.c:openGlExtensionsInit():90:
Initializing OpenGL extensions
[0:00.000] 24E8 system/extensions/gl/gl.c:openGlExtensionsInit():91:
OpenGL: 4.5.0 NVIDIA 382.05
[0:00.000] 24E8 system/extensions/gl/gl.c:openGlExtensionsInit():92:
GLSL: 4.50 NVIDIA
[0:00.000] 24E8 system/extensions/gl/gl.c:openGlExtensionsInit():105:
Max Texture Units: 4
Max Texture Size: 32768
Max Point Size: 2047.00
[0:00.000] 24E8 system/extensions/gl/gl.c:openGlExtensionsInit():141:
Checking for required OpenGL extensions
[0:00.000] 24E8 system/extensions/gl/gl.c:openGlExtensionsInit():183:
loading shaders...
[0:00.000] 24E8 system/extensions/gl/gl.c:openGlExtensionsInit():218:
loading VBOs...
[0:00.000] 24E8 system/extensions/gl/gl.c:openGlExtensionsInit():237:
loading FBOs...
[0:00.000] 24E8 system/extensions/gl/gl.c:openGlExtensionsInit():258:
Max Color Attachments: 8
[0:00.000] 24E8 system/extensions/gl/gl.c:openGlExtensionsInit():260:
Max Draw Buffers: 8
[0:00.000] 24E8 system/rocket/synceditor.c:syncEditorInit():170:
WARNING: Could not connect to GNU Rocket. server:'localhost:1338'
[0:00.000] 24E8 system/graphics/object/lighting.c:lightingInit():217:
Initializing lighting
[0:00.000] 24E8 system/ui/input/inputSdl.c:isUserExit():75:
User requested exit.
[0:00.000] 24E8 system/player/player.c:playerInit():732:
Initialization exit.
[0:00.000] 24E8 system/timer/timer.c:timerCounterEnd():334:
'playerInit' duration: 0.035 seconds
[0:00.000] 24E8 system/audio/sound.c:soundInit():331:
Audio initialized successfully! rate:44100, format:32784, channels:2, buffer:4096
[0:00.000] 24E8 system/audio/sound.c:soundAddSongToPlaylist():526:
00: filename:'data/ahdistaako.ogg', title:'', length:'0'
[0:00.000] 24E8 system/audio/sound.c:soundPlaySong():829:
Playing: 00: filename:'data/ahdistaako.ogg', title:'', length:'0'
[0:00.004] 24E8 system/main.c:systemRun():268:
Demo started.
[0:00.004] 24E8 system/main.c:systemRun():279:
Demo ended, deinitialization started.
[0:00.004] 24E8 system/timer/timer.c:timerCounterEnd():334:
'playerDeinit' duration: 0.000 seconds
[0:00.004] 24E8 system/datatypes/memory.c:memoryDeinit():101:
Deinitializing memory
[0:00.004] 24E8 system/timer/timer.c:timerCounterEnd():334:
'memoryDeinit' duration: 0.000 seconds
[0:00.004] 24E8 system/ui/window/windowSdl.c:windowDeinit():37:
Deinitializing window
[0:00.004] 24E8 system/javascript/javascript.c:jsDeinit():255:
Deinitializing scripting.
[0:00.004] 24E8 system/main.c:systemDeinit():314:
System deinitialized successfully
[1:51.912] 690 system/ui/input/inputSdl.c:isUserExit():75:
User requested exit.
[1:51.912] 690 system/main.c:systemRun():279:
Demo ended, deinitialization started.
[1:51.912] 690 system/player/player.c:deinitEffect():155:
Deinitializing effect 'GLOBALS'
[1:51.912] 690 system/player/player.c:deinitEffect():155:
Deinitializing effect 'Demo'
[1:51.912] 690 system/timer/timer.c:timerCounterEnd():334:
'playerDeinit' duration: 0.004 seconds
[1:51.912] 690 system/datatypes/memory.c:memoryDeinit():101:
Deinitializing memory
[1:51.912] 690 system/graphics/fbo.c:fboDeinit():237:
Deinitializing FBO 'fbodist'
[1:51.912] 690 system/graphics/fbo.c:fboDeinit():237:
Deinitializing FBO 'fbobc'
[1:51.912] 690 system/graphics/fbo.c:fboDeinit():237:
Deinitializing FBO 'fbohg'
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character ' ''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '!''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '"''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '#''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '$''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '%''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '&''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character ''''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '(''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character ')''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '*''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '+''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character ',''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '-''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '.''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '/''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '0''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '1''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '2''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '3''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '4''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '5''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '6''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '7''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '8''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '9''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character ':''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character ';''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '<''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '=''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '>''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '?''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '@''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'A''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'B''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'C''
[1:51.912] 690 system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font characte[0:29.670] 101C system/ui/input/inputSdl.c:isUserExit():75:
User requested exit.
[0:29.670] 101C system/main.c:systemRun():279:
Demo ended, deinitialization started.
[0:29.670] 101C system/player/player.c:deinitEffect():155:
Deinitializing effect 'GLOBALS'
[0:29.670] 101C system/player/player.c:deinitEffect():155:
Deinitializing effect 'Demo'
[0:29.670] 101C system/timer/timer.c:timerCounterEnd():334:
'playerDeinit' duration: 0.004 seconds
[0:29.670] 101C system/datatypes/memory.c:memoryDeinit():101:
Deinitializing memory
[0:29.670] 101C system/graphics/fbo.c:fboDeinit():237:
Deinitializing FBO 'fbodist'
[0:29.670] 101C system/graphics/fbo.c:fboDeinit():237:
Deinitializing FBO 'fbobc'
[0:29.670] 101C system/graphics/fbo.c:fboDeinit():237:
Deinitializing FBO 'fbohg'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character ' ''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '!''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '"''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '#''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '$''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '%''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '&''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character ''''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '(''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character ')''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '*''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '+''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character ',''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '-''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '.''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '/''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '0''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '1''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '2''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '3''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '4''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '5''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '6''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '7''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '8''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '9''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character ':''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character ';''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '<''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '=''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '>''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '?''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '@''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'A''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'B''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'C''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'D''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'E''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'F''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'G''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'H''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'I''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'J''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'K''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'L''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'M''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'N''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'O''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'P''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'Q''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'R''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'S''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'T''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'U''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'V''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'W''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'X''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'Y''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'Z''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '[''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '\''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character ']''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '^''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '_''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '`''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'a''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'b''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'c''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'd''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'e''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'f''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'g''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'h''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'i''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'j''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'k''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'l''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'm''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'n''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'o''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'p''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'q''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'r''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 's''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 't''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'u''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'v''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'w''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'x''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'y''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character 'z''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '{''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '|''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '}''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'Font character '~''
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'fbodist.color.fbo'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/party2.ogv.frame'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/ahdistaako.png'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/t1.png'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/t2.png'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/t3.png'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/t4.png'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/t5.png'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/t6.png'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/t7.png'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/t8.png'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/t9.png'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/vignette.png'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/empty.png'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'fbobc.color.fbo'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'fbohg.color.fbo'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/balloon.png'
[0:29.670] 101C system/graphics/texture.c:textureDeinit():73:
Cleaning 'data/t0.png'
[0:29.670] 101C system/timer/timer.c:timerCounterEnd():334:
'memoryDeinit' duration: 0.009 seconds
[0:29.670] 101C system/ui/window/windowSdl.c:windowDeinit():37:
Deinitializing window
[0:29.670] 101C system/javascript/javascript.c:jsDeinit():255:
Deinitializing scripting.
[0:29.670] 101C system/main.c:systemDeinit():314:
System deinitialized successfully
YEAR 21XX.

AFTER THE SECOND DESTRUCTION OF THE
CIVILIZATION WORLD SUPERPOWERS HAD TO
RECONSIDER THE RULES OF WAR.

IT WAS DECIDED THAT INSTEAD OF BUILDING
MASSIVE ARMIES A SINGLE CHAMPION WOULD BE
CHOSEN AMONG HIGHLY TRAINED SPECIAL FORCES.

THEY WERE CALLED
THE FIGHTERS

EVERY YEAR THESE FIGHTERS FACE EACH OTHER
IN AN ULTIMATE CHAMPIONSHIP, AND THE WINNER
IS CROWNED AS

THE RULER OF THE FREE WORLD!