Search found 7 matches

by AlkaSoft
Wed Jan 13, 2010 12:36 am
Forum: Beginners Help
Topic: Reading a text file using Irrlicht. (IReadFile)
Replies: 7
Views: 1398

Wow i didnt knew that this thing existed lol. It looks like much more complete and easy to use.
by AlkaSoft
Tue Jan 12, 2010 6:15 pm
Forum: Beginners Help
Topic: Reading a text file using Irrlicht. (IReadFile)
Replies: 7
Views: 1398

I have made a code that loads the some data from a text file, i won't post the full code right now, but i could tell you how i did it : 1 : Open notepad and create a empty file, name it (I named mine "Data.options", i changed the the type of file, many people dont try to open ".option...
by AlkaSoft
Mon Jan 11, 2010 1:16 am
Forum: Beginners Help
Topic: Multiple game Loops.
Replies: 11
Views: 827

This was initially a pseudo-code, i dont need to increment X, its an example. I need to draw and affect some images in another loop. The simple problem is when i implement a second loop. When i close the program, and my second loop is running, the application closes but the console is hidden and sti...
by AlkaSoft
Mon Jan 11, 2010 12:38 am
Forum: Beginners Help
Topic: Multiple game Loops.
Replies: 11
Views: 827

No you could not do that, because the app would output text (x variable) and the engine would stop rendering and running until X is not 1001.

What i want is to draw some images in a different loop.
by AlkaSoft
Sun Jan 10, 2010 11:07 pm
Forum: Beginners Help
Topic: Multiple game Loops.
Replies: 11
Views: 827

Yes i tried it before. Same results.
WHY!?!?!
by AlkaSoft
Sun Jan 10, 2010 10:54 pm
Forum: Beginners Help
Topic: Multiple game Loops.
Replies: 11
Views: 827

@Bate : I tried to change endScene and BeginScene, it gives the same result. Application closes, but its still running in the processes. I have tried to add a console with the application, and i observed that when the application closes (in second loop), the console is still open and the second loop...
by AlkaSoft
Sun Jan 10, 2010 6:53 pm
Forum: Beginners Help
Topic: Multiple game Loops.
Replies: 11
Views: 827

Multiple game Loops.

Hi everyone! Im having a small problem that i couldn't solve, so your help is appricieted. Here is a pseudo-code to understand what is happenning in my application: ... int X = 0; { While (device->run()) { driver->beginScene(true, true,SColor(0,255,255,255)); while (X <= 1000) { device->run(); drive...