*blog... kind of... *rss
Inspire08 demo log, day 22 04.05.2008 | |
Status: 4 days left until Inspire08 Base code (still!)
Well, I haven't progressed much visually, but I've refactored everything quite a bit. The base is almost done.
http://ricardocabello.com/projects/inspire08/05/
As you can see, I have a Logger, Timer, FPS counter, MS... That's enough for debugging/testing the effects on-the-fly. Also, I have a base for the Scene Managing, I still have to load a XML with the times of start/end and all this but by now it's simple enough and looks like this:
import javax.media.opengl.GL;
import java.util.ArrayList;
import com.xplsv.utils.Logger;
import scenes.*;
public class SceneManager
{
private ArrayList scenes;
public SceneManager(GL gl)
{
scenes = new ArrayList();
scenes.add(new SceneRandomPolys(gl));
scenes.add(new SceneInfo(gl));
scenes.add(new SceneLogger(gl));
}
public void init()
{
Logger.init();
Logger.log("SceneManager.init");
for (int i = 0; i < scenes.size(); i++)
((Scene)scenes.get(i)).init();
}
public void render()
{
for (int i = 0; i < scenes.size(); i++)
((Scene)scenes.get(i)).render();
}
}
Just 4 days to go and I still don't know how the visual content will be... Oh well... Tomorrow more. | | posted by trace at 15:17 | | 0 comment written so far |
SORRY! Is not that I don't care about what you have to say, of course I do, but they are speaking louder and I lost my patience :(
|
|
*profile

traditional id: Ricardo Cabello Miguel
based in: London, UK
serving to: Hi-ReS!
contact me: click here
*latest posts
* The Magic of Viral (10.10.2008) * Jonathan Harris: Beyond Flash, an adde... (06.10.2008) * Zeitgeist: Addendum (05.10.2008) * Crisis (03.10.2008) * Youtube, now in Super HD! (30.09.2008) * Adobe AIR for Linux - Beta (28.09.2008) * What does the Google Chrome logo inspi... (28.09.2008) * Diesel: SFW XXX (25.09.2008) * Muffler - August 2008 - Australia Tour... (22.09.2008) * e-definition of creepy. (21.09.2008) * Demoparty deadlines in real life. (20.09.2008) * Service Pack 3 Setup Error, re-revisit... (16.09.2008) * Not everybody can say ... (11.09.2008) * Service Pack 3 Setup Error, revisited (10.09.2008) * The Internet (2008) (10.09.2008)
*latest comments
* C++, SDL Coding? Maybe.. ;) (Preview) (trace) * C++, SDL Coding? Maybe.. ;) (Preview) (Joey) * La picaresca (spt) * Mr. Slip Up (ricardo) * La picaresca (ricardo) * La picaresca (spt) * La picaresca (sole) * Demoscene @ Cirsa (sml) * La picaresca (humphr3y) * La picaresca (alfio) * fiver2's new baby: debris (Jcl) * Barcelona = full of shit(s) (Soli) * Demoscene @ Cirsa (Scener) * Rar & unrar with Ubuntu (SethPlate) * Mindcandy 2 (Jcl)
|