† AncienT RituaL †
 
 
Last Update - 26 Jun 2009
† MENU †
 News / Blog
 Programming
 Art Gallery
 Web Portfolio
 Contact / Bio
 Guestbook
† LINKS †
 Druantia
 Knight Templar
 Thot Kall
 
 Rotting Christ
 Suicidal Angels
 Wastefall
 
 Blender
 Code::Blocks
 Euclideanspace
† POETRY †
A Dead Poem

Nothing is what it seems, stop believing to those things, things they tell you from your birth, things they force 'em to your brain.

What you know may not true, take the risk and search for you, seek the knowledge for yourself, question all the facts you've learned.

Start to think not as they, walk the path the other way, brake the chains free your mind, and then you'll have a precious find.

GODlike
† PAYPAL †
If you want to support my work please consider donating...

 
† news/blog †
   « | ‹ Prev 1 2 3 4 5 6 7 8 9 10 11 Next › | »   
 
Fri 26 Jun 09 - New poll
News There is a new poll on your right and its about one of the most difficult choices someone has to make. What do you chose to listen to, your heart or your reason? Maybe you can help me out with your choice.
 
 
Mon 01 Jun 09 - Lyrics/Poetry - Man Against Man
News The site has been populated with computer stuff the past few months and I dont think that thats a good decision. Programming and 3D graphics are interesting but only for the 1% of the visitors, so Its time to write about something else and change the subject.

These are lyrics or a poem or call it whatever you want. Its about war and its called "Man Against Man". Hope you like it.

Man against man

Blast!!
Thunderous sound deafens the land
a blast so tremendous arises from behind
I know the reason, I forecast the result
the war has begun and we are stuck... stuck to the past

Expected was this obnoxious moment
surprise was not as it was recurrent
excessive cupidity forges the motive
and human acts... acts narrow minded

I find myself in a wrecked setting
buildings demolished, the ruins are smoking
I don't know what to do, I just keep walking
too much to think off and crying isn't helping

Red is the sky
the buildings all ruins
the trees nude and burnt
the roads deserted

The eyes quickly move around
they see the blood
but they cant assimilate the spectacle
They simply cant

Where I walk, in my path
stack of bodies ripped apart
crosscut limbs full of blood
these are the horrors I leave behind

In moments like these
you hope for a god
to ease your sorrow
to reset you to the past

Alas...
the hope isn't here
and the god is a fraud
the sorrow remains
rooted in a heart colored black

Look of what you've done
for you a soul equals none
for money and power you turn
...man against man
 
 
Fri 29 May 09 - 3D - Take screenshot in OpenGL
News Here is a code snippet showing how to take a screenshot and save it in a TGA file.

void TakeScreenshot( const char* filename )
{
    // open file and check
    fstream fs;
    fs.open( filename, ios::out|ios::binary );
    if( !fs.good() )
    {
        cout << "Cannot create screenshot. File \"" << filename << "\"" << endl;
        return;
    }

    // write headers
    unsigned char tga_header_uncompressed[12] = {0,0,2,0,0,0,0,0,0,0,0,0};
    unsigned char header[6];

    header[1] = window_width / 256;
    header[0] = window_width % 256;
    header[3] = window_height / 256;
    header[2] = window_height % 256;
    header[4] = 24;
    header[5] = 0;

    fs.write( (char*)tga_header_uncompressed, 12 );
    fs.write( (char*)header, 6 );

    // write the buffer
    char* buffer = (char*)calloc( window_width*window_height*3, sizeof(char) );

    glReadPixels( 0, 0, window_width, window_height, GL_BGR, GL_UNSIGNED_BYTE, buffer );
    fs.write( buffer, window_width*window_height*3 );

    // end
    fs.close();
    free( buffer );
    cout << "Screenshot \"" << filename << "\" saved" << endl;
}


Pretty simple, right?
 
 
Mon 18 May 09 - 3D - Three screens from my engine
News Here are three screenshots illustrating a few models illuminated by two point lights and one "projected texture" light which casts a shadow. The illumination process is being done using deferred shading and you can also see the SSAO filter.

The next step is to add shadows to the point lights and integrate normal mapping in the current pipeline. A video illustrating all these would be great, unfortunately though the video capturing programs (like FRAPS) in Linux have speed issues with OpenGL.

3D engine   3D engine   3D engine
 
 
Sun 10 May 09 - 3D - SSAO implementation
News I've recently combined two techniques and added Screen Space Ambient Occlusion in my engine. Thanks to ArKano22 (from GameDev.net forums) and Leadwerks (from opengl.org forums) for sharing their code to the public.

Here is a screen illustrating the SSAO factor:

SSAO
 
 
 
   « | ‹ Prev 1 2 3 4 5 6 7 8 9 10 11 Next › | »   
 
† STATS †
Visits... 100929
Polls... 6
Poll Votes... 292
Shouts... 301
Guestbook... 17
Comments... 33
† POLL †
Its better to listen to your...
 
Heart
Reason
 


† SHOUTBOX †
Qcpbcfdq
Good crew it's cool :) chick
 
Cukqvxtc
Cool site goodluck :) free pics of animal
 
Fjtosqiv
i'm fine good work pics of austr
 
Kedhfhzx
It's funny goodluck animal sex m
 
Uxbczhmb
I'm happy very good site sex wit
 
Fsdzclpu
perfect design thanks free full len
 
Tykmlwwp
good material thanks funny birthd
 
Niztaahx
It's funny goodluck ebony
 



† ADS †





Programming, code, design, art and everything by GODlike
Optimized for FireFox
2005 - 2006 ©AncienT RituaL. Contact webmaster at: