Search found 10 matches

by SkaCahToa
Sun Jul 01, 2007 4:18 am
Forum: Beginners Help
Topic: Irrlicht, iPhysics and Mac OS X
Replies: 6
Views: 712

Sorry for this not being helpful, but um are you on insanelymac? Your name seems fimilar... but i can't figure out where it's from.
by SkaCahToa
Mon Jun 25, 2007 8:59 pm
Forum: Beginners Help
Topic: error while adding item to a listbox [solved]
Replies: 13
Views: 819

yeah i figured out the problem... it was a stupid mistake... the program was trying to add the item to the listbox before it was made.
by SkaCahToa
Mon Jun 25, 2007 4:34 pm
Forum: Beginners Help
Topic: error while adding item to a listbox [solved]
Replies: 13
Views: 819

Hmm... sorry about that. main.h #include <irrlicht.h> #include <irrKlang.h> using namespace irr; IrrlichtDevice* device; audio::ISoundEngine* irrKlang; video::IVideoDriver* driver; scene::ISceneManager* smgr; gui::IGUIEnvironment* guienv; class engine : public IEventReceiver { public: void runLevel(...
by SkaCahToa
Mon Jun 25, 2007 3:36 pm
Forum: Beginners Help
Topic: error while adding item to a listbox [solved]
Replies: 13
Views: 819

hmm.... file handling?... I'm not sure what you mean by file handling. I have this as my event reciever bool engine::OnEvent(SEvent event) { if (event.EventType == irr::EET_LOG_TEXT_EVENT) { std::fstream LogFile("LogFile.log",std::ios::out|std::ios::app); LogFile << (event.LogEvent.Text) <...
by SkaCahToa
Mon Jun 25, 2007 2:36 am
Forum: Beginners Help
Topic: error while adding item to a listbox [solved]
Replies: 13
Views: 819

I ended up using core::stringw item; item = event.LogEvent.Text; consoleListBox->addItem(item.c_str()); which i think is basically the same code... The code compiles with out errors or warnings. When the app is ran tho there is an error when it runs... I'm not sure if the code is at fault or the com...
by SkaCahToa
Sun Jun 24, 2007 11:47 pm
Forum: Beginners Help
Topic: error while adding item to a listbox [solved]
Replies: 13
Views: 819

thanks for the quick reply. i'm still getting similar errors c:\programming\fpstest\main.cpp(190) : error C2297: '+=' : illegal, right operand has type 'const irr::c8 *' c:\programming\fpstest\main.cpp(190) : error C2114: '+=' : pointer on left; needs integral value on right item+=event.LogEvent.Tex...
by SkaCahToa
Sun Jun 24, 2007 10:58 pm
Forum: Beginners Help
Topic: error while adding item to a listbox [solved]
Replies: 13
Views: 819

error while adding item to a listbox [solved]

I'm trying to add a GUI console... I am trying to use this code bool engine::OnEvent(SEvent event) { if (event.EventType == irr::EET_LOG_TEXT_EVENT) { consoleListBox->addItem(event.LogEvent.Text); return true; }; return false; }; But i get this error while building c:\programming\fpstest\main.cpp(18...
by SkaCahToa
Sat Apr 14, 2007 11:35 pm
Forum: Off-topic
Topic: Post removed.
Replies: 76
Views: 12169

I think it was TheRLG who said that haiku looked interesting... I have it installed, but it seems too unfinished to be usable yet... plus who uses the be api anymore? Irrlicht\IrrKlang don't... Possibly later after google's summer of code and if a few things get ported to beos/zeta/haiku I might use...
by SkaCahToa
Sun Jun 18, 2006 10:26 pm
Forum: Beginners Help
Topic: Scripting... Where to stop
Replies: 1
Views: 209

Scripting... Where to stop

I started makinga basic FPS engine, but i'm not sure what / how i should include scripting support... Should i only make mission objectives scriptable... or should everything from health to music be scriptible?
by SkaCahToa
Sun Jun 18, 2006 10:00 pm
Forum: Project Announcements
Topic: Single Class Game Framework :)
Replies: 2
Views: 1212

ONE CLASS? wow.
are you planing on submiting the code? I really want to know how all that could be done with only one class.