Articles
- C Force stop on warnings

To make sure that you write good clean code, you might be wondering how to make your complier stop on warnings, well now you can with this additional command line option: -Werror

No comments

- How to find out where your working directory is

If you are writing some code using some sort of crazy IDE that creates lots of folders and files all over the place, trying to find where to put extra files for your application to find and read can be hard. But not now with Pete’s easy directory finding solution! Instead of trying and failing Read..

No comments

- Game development Update

For the last couple of days I’ve been playing around with panada3D game engine. So far with out much problems I’ve been able to create 3D sound, landscape collision, 3rd and first person camera. I have also been messing around with blender and been able to UV map my models that I make useing it. Read..

No comments

- Frame rate independent movement in PyGame

To make sure that your game runs the same on all computers that can handle it. You will need to make sure that your actions are independent from the frame rate. To do this in python you can put this code above the game loop framerate = 60 #frames per second clock = pygame.time.Clock() and Read..

No comments

- JScrollPane back to top

If you want to make your JScrollPane return to the top once you have enter some text, try this: myTextArea.setCaretPosition( 0 ) It places the curser back to zero and in turn makes the JScrollPane go back to the top. Worked for me, hope this helps someone.

No comments

- MMORPG Update #2

Okay so after a very long time here is a MMORPG Codename Starquest Update.  This only contains some basic images, which have been created useing the IrrLicht engine and varius other applications such as 3D Studios Max, Blender, Earth Sculptor and Photoshop. Below shows the lightmapping test on a room mesh. The lighting was created Read..

No comments

- Chaos Gate

I am attempting to create the chaos gate from the anime .hack //SIGN, for those of you who don’t know what it is.  A chaos gate is “a sort of transfer device that takes us from one place to another.” — Lord Orca —within The World (a MMORPG) Here’s a picture of the chaos gate Read..

No comments