Search found 121 matches

by Wolf Dreamer
Sun Aug 08, 2004 11:27 pm
Forum: Beginners Help
Topic: Ok, falling at the first hurdle
Replies: 8
Views: 518

Just click on Tools, Options, Projects, and then VC++ Directories, then choose LIB, and add in a link to where it is at.

Then it'll find it.
by Wolf Dreamer
Sun Aug 08, 2004 3:38 am
Forum: Beginners Help
Topic: newton examp not compiling
Replies: 8
Views: 1072

Was there an older version that worked right? Has anyone that has downloaded it within the past couple of months gotten it to work right?

I didn't get any warnings though, just the two fatal errors posted by mrbig.
by Wolf Dreamer
Fri Aug 06, 2004 8:45 am
Forum: Project Announcements
Topic: Real time editor
Replies: 32
Views: 10057

To get the file currently listed for download on your http://variable.50megs.com/index.html site, I have to click on it with Internet Explorer, and allow it to install something called 35MB.COM before it will let me have it. Sounds a bit suspecious. Does anyone who allowed this have anything new app...
by Wolf Dreamer
Mon Jun 14, 2004 12:31 am
Forum: Beginners Help
Topic: Should I try to learn C++ or C sharp? Advice please....
Replies: 14
Views: 729

I had that same question

http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?p=3804&highlight=c#3804 Thats the old topic where I asked the same question before going ahead and buying C++ mostly because everyone else was using it, and thats what I needed at the time for Irrlicht. Irrlicht is now going to be for c# as we...
by Wolf Dreamer
Thu Jun 03, 2004 10:44 pm
Forum: Beginners Help
Topic: How much faster is XML compared to loading regular .txt
Replies: 3
Views: 308

How much faster is XML compared to loading regular .txt

It seems to me it'd be easier to just use a .txt file.

Will there be any notiable speed increase by using .xml instead? I have a 1.9ghz computer, so even with a lot of information to load up, would it matter?
by Wolf Dreamer
Thu Jun 03, 2004 12:06 pm
Forum: Beginners Help
Topic: Does anyone here besides me not use C++?
Replies: 16
Views: 1106

any projects to see with GMIrrlicht yet?

To those using GMIrrlicht , how far has anyone gotten with it? I scanned the official Game Maker forum, but don't see much there. My own forum is mostly dead, but if no one has any place else for GMIrrlicht users to be, might as well hang out there. http://p067.ezboard.com/fwolfdreamersgamemakerforu...
by Wolf Dreamer
Tue May 18, 2004 5:10 pm
Forum: Beginners Help
Topic: need example please. writing to XML file
Replies: 9
Views: 1111

13 minutes after my last post someone actually replied. Ack! Why didn't I notice that before?

Anyway, thanks. That works.

Anxiety willing, one of these days I'll actually get something finished.
by Wolf Dreamer
Mon May 03, 2004 6:45 pm
Forum: Beginners Help
Topic: need example please. writing to XML file
Replies: 9
Views: 1111

I have no problems with the READER. I just need to know how to use the WRITER.

I just posted the spelling error for the reader in my post asking about the writer.

Anyway, can you get it to write to a new XML file? If so, please post some code.
by Wolf Dreamer
Mon May 03, 2004 2:05 pm
Forum: Beginners Help
Topic: need example please. writing to XML file
Replies: 9
Views: 1111

h:\irrlicht-0.6\examples\9.Meshviewer\main.cpp(344) : error C2761: 'void irr::io::IXMLWriter::writeXMLHeader(void)' : member function redeclaration not allowed Someone please tell me what I'm doing wrong. I got everything else working fine I think. No matter what I put in the () it doesn't work. Ea...
by Wolf Dreamer
Mon May 03, 2004 1:35 pm
Forum: Beginners Help
Topic: need example please. writing to XML file
Replies: 9
Views: 1111

I found a misprint in the API

http://irrlicht.sourceforge.net/docu/classirr_1_1io_1_1IXMLReader.html The code for parsing this file would look like this: io::IXMLReader* xml = device->getFileSystem()->createXMLReader("config.xml"); Device should be capitalized otherwise it causes an error. Getting the reader to work is...
by Wolf Dreamer
Sun May 02, 2004 6:49 pm
Forum: Beginners Help
Topic: need example please. writing to XML file
Replies: 9
Views: 1111

need example please. writing to XML file

I'm not sure why, but I seem to be having a lot of difficulty getting this to work.

Will someone please post some code I can use to write to an XML file.

I get nothing but errors when I try to copy and paste things from http://irrlicht.sourceforge.net/docu/cl ... riter.html
by Wolf Dreamer
Sat Apr 24, 2004 1:48 am
Forum: Beginners Help
Topic: using tabs
Replies: 3
Views: 459

// create tab control and tabs IGUITabControl* tab = env->addTabControl( core::rect<s32>(2,20,640-452,480-7), wnd, true, true); IGUITab* t1 = tab->addTab(L"Scale"); IGUITab* t2 = tab->addTab(L"Empty Tab"); Are they off screen? I tried to add more than would fit on the tool windo...
by Wolf Dreamer
Sun Apr 18, 2004 6:53 pm
Forum: Beginners Help
Topic: load .xml in visual studios, save without change, problem
Replies: 4
Views: 357

I click advanced save options and see there are four options with Unicode. The unsigned one is the one selected. Unicode(UTF-8 without signature) - Codepage 65001 If I change the advanced save options for this, do I have to change them back for saving .cpp? I guess I'll try all 4 of them to see what...
by Wolf Dreamer
Sun Apr 18, 2004 1:51 pm
Forum: Beginners Help
Topic: load .xml in visual studios, save without change, problem
Replies: 4
Views: 357

load .xml in visual studios, save without change, problem

Open the config.xml with that comes with the meshview example, with visual studios. Then click save. Now whenever you try to run Meshviewer, it doesn't work. It just says loading and nothing happens. So even without changing it in any detectable way, things no longer work. Any idea why that is? Is t...
by Wolf Dreamer
Sat Apr 17, 2004 1:14 am
Forum: Beginners Help
Topic: need example of using xml for map file to load up .x
Replies: 4
Views: 438

solved one problem

I just saw this other recent topic http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=2115 I added node->setMaterialFlag(video::EMF_LIGHTING, false); and it works fine now. The textures loaded up just fine, I just lacked a light source so everything looked dark. If anyone can answer my save/load...