Search found 21 matches

by Das Gurke
Tue Apr 25, 2006 2:54 pm
Forum: Beginners Help
Topic: n00by question but - how do i actually open the editor thing
Replies: 8
Views: 589

Sorry, but already the very first reply gave you exactly what you asked for ...
Shows how to set up the Visual Studio IDE for using the Irrlicht Engine and how to write a simple HelloWorld program with it.
(from Tutorial)
by Das Gurke
Sat Apr 22, 2006 4:16 pm
Forum: Beginners Help
Topic: Problems with Irrlicht and zips
Replies: 1
Views: 539

Sorry but *bump* Maybe this is wrong in the beginners help section?
by Das Gurke
Thu Apr 20, 2006 9:44 pm
Forum: Open Discussion and Dev Announcements
Topic: Irrlicht 1.0
Replies: 21
Views: 2585

AndyCR wrote:0 errors, 0 warnings! Thanks for not breaking compatibility! That's another thing I love about Irrlicht :)
101% Agree, ALL fine with 1.0 =)
by Das Gurke
Mon Apr 17, 2006 7:10 pm
Forum: Beginners Help
Topic: Sorr I' m total newbie
Replies: 12
Views: 524

Ouch, big sorry, i overread that small passage they made some games. "When i have a cool thing and i want to try use it with Irrlicht... what i haev to do?" This just really sounded like another enthusiastic guy, thinking he can go for WoW II or similar ^^ Irrlicht attracts a lot of these ...
by Das Gurke
Mon Apr 17, 2006 6:46 pm
Forum: Beginners Help
Topic: Sorr I' m total newbie
Replies: 12
Views: 524

Sorry but:

You guys need to learn C++. Starting with Irrlicht is, well not even really difficult, but you will then lack awfully in some basics.
by Das Gurke
Mon Apr 17, 2006 2:15 pm
Forum: Irrlicht.NET
Topic: Can Irrlicht.net be used with .NET 2.0
Replies: 8
Views: 2253

There is a vcredist.exe around. It installs exactly the part of the .net framework you need if you compiled your app with Visual Studio Express It usually comes with your compiler. Have a look in Microsoft Visual Studio 8\SDK\v2.0\Bootstrapper\Packages\vcredist_x86 (or x64 , machine depending) But t...
by Das Gurke
Mon Apr 17, 2006 2:02 pm
Forum: Beginners Help
Topic: Problems with Irrlicht and zips
Replies: 1
Views: 539

Problems with Irrlicht and zips

Now, according to the 2nd tutorial a file inside a zip added via IrrDevice->getFileSystem()->addZipFileArchive("level/00.gxlevel"); should be "found" by the program straight away. Or am I mistaken here already? Anyway, my Code: IrrDevice->getFileSystem()->addZipFileArchive("...
by Das Gurke
Wed Apr 12, 2006 10:33 am
Forum: Beginners Help
Topic: Unicode Trouble - Getting a Text from an Editbox
Replies: 12
Views: 609

Well, doesn't seem so ... But: Google can't tell me what stringc is, the MSDN doesn't have any kind of entry about stringc, cppreference.com doesn't know a function called stringc etc etc And my compiler gives me the following error: \bomberman\IrrMainmenu.cpp(222) : error C2228: left of '.c_str' mu...
by Das Gurke
Tue Apr 11, 2006 1:25 pm
Forum: Beginners Help
Topic: Unicode Trouble - Getting a Text from an Editbox
Replies: 12
Views: 609

Not sure if we are talking apart.

stringc seemst so be a class or struct. So it should probably be initialized somewhere or am I mistaken? A quick google for "stringc c++ header" didn't quite bring satisfieng results :(
by Das Gurke
Tue Apr 11, 2006 1:17 pm
Forum: Beginners Help
Topic: Unicode Trouble - Getting a Text from an Editbox
Replies: 12
Views: 609

Where do I take that stringc from?
by Das Gurke
Tue Apr 11, 2006 12:55 pm
Forum: Beginners Help
Topic: Unicode Trouble - Getting a Text from an Editbox
Replies: 12
Views: 609

Unicode Trouble - Getting a Text from an Editbox

Well, my problem is simpel. I have created an edit Box and want to read it out using the event handler. The method "getText" returns a "const wchar_t *". And I have never really come across Unicode. So what exactly is wchar_t? Does it sort off replace the string variable? Or is i...
by Das Gurke
Wed Mar 29, 2006 12:49 pm
Forum: Beginners Help
Topic: Basic Question about OOP
Replies: 4
Views: 174

Mhm, not quite :(

Code: Select all

.\bomberman\IrrEventReceiver.cpp(13) : error C2723: 'IrrEventReceiver::OnEvent' : 'virtual' storage-class specifier illegal on function definition
Guess I really should start off with OOP :roll:
by Das Gurke
Wed Mar 29, 2006 12:21 pm
Forum: Beginners Help
Topic: Basic Question about OOP
Replies: 4
Views: 174

Basic Question about OOP

I want to make a little GUI for my game and made so far no use of Object Orientation. I guess I understood the basics but now I am at a sort of dead point. I divided my source into multiple Files and don't quite get the hang on how to do this with the IrrEventReceiver Class. My Code: [CPP] #include ...
by Das Gurke
Sun Mar 26, 2006 11:37 pm
Forum: Project Announcements
Topic: Dragon Warrior 1 3D Remake using irrWizard...
Replies: 64
Views: 31820

Just wanted to tune in that this looks really interesting. I must admit I havent even heared of the original, but I get reminded of Zelda everytime i see the video :oops:
by Das Gurke
Thu Mar 09, 2006 11:04 am
Forum: Beginners Help
Topic: Converting from Windows GDI to Irrlicht
Replies: 16
Views: 798

Not quite :cry: The Load Screen at the very beginning uses this code. while(IrrDevice->run() && IrrDriver) { // Wir wollen nur was rendern wenn das Fenster aktiv ist if (IrrDevice->isWindowActive()) { // Später wichtig für Zeitmessung, eher irrelevant im Intro aber wir sind ja Perfektioniste...