Search found 53 matches

by stef_
Tue Jul 03, 2007 5:39 pm
Forum: Project Announcements
Topic: irrNetLite 2.1 [BETA]
Replies: 230
Views: 121132

IMHO the name is a bit wrong, should be : enetUtils, enetPacketBuilder.

A wrapper should add something a bit more consistent, otherwise I prefer to use
enet directly :)

Bye
by stef_
Sat Jan 06, 2007 9:25 pm
Forum: Beginners Help
Topic: Cannot load *.3ds
Replies: 2
Views: 296

Mhm, you say:
> node->setMaterialTexture( 0, driver->getTexture("test.bmp") );
and then:
> Loaded texture: map.bmp
temp.bmp and map.bmp are two different images.

Have you tried to open it in 09.Meshviewer example?

Bye
by stef_
Sat Jan 06, 2007 9:02 pm
Forum: Beginners Help
Topic: howto create directional light
Replies: 3
Views: 436

I haven't used directional lights but why do you say: > the Interface nor does the getLightData return a pointer. > doesnt work of course as theres no connection between sunData and sun. virtual video::SLight& getLightData() = 0; returns not a pointer but a reference, so it's ok... A reference i...
by stef_
Sat Jan 06, 2007 8:53 pm
Forum: Beginners Help
Topic: Camera rotation (I'm lost...) [Solved again]
Replies: 7
Views: 816

The simplest way (you must use setInputReceiverEnabled (false) in this case): ICameraSceneNode *camera; camera = smgr->addCameraSceneNodeFPS (0, 100, 500); camera->setInputReceiverEnabled (false); then: camera->setPosition (irr::core::vector3df (posx, posy, posz)); camera->setRotation (irr::core::ve...
by stef_
Fri Jan 05, 2007 6:47 pm
Forum: Beginners Help
Topic: IListBox selection behaviour
Replies: 3
Views: 324

When you click on a listbox item gui event EGET_LISTBOX_CHANGED is fired.

Bye
by stef_
Fri Jan 05, 2007 5:13 pm
Forum: Project Announcements
Topic: IrrNet - Irrlicht Network Framework 0.36 (Now Windows/Linux)
Replies: 231
Views: 66285

> Hey I didnt know this name was taken
I'm not saying this.

I'm used to call irrXYZ the best (or ufficial) program for doing XYZ with irrlicht (the same applies for gtk-xxx libraries, gnome-xxx libraries, or ogre-xxx libraries, ...).

Bye
by stef_
Fri Jan 05, 2007 4:56 pm
Forum: Project Announcements
Topic: IrrNet - Irrlicht Network Framework 0.36 (Now Windows/Linux)
Replies: 231
Views: 66285

Hi, I have already used irrlicht+enet (or opengl+enet). Sometime ago I proposed the name irrNet on niko blog (http://www.irrlicht3d.org/pivot/entry.php?id=409) and recording to me the value added for enet+irrlicht should be "at least": client-prediction+interpolation+extrapolation. Probabl...
by stef_
Sat Dec 30, 2006 3:55 pm
Forum: Beginners Help
Topic: What network library is the best?
Replies: 6
Views: 659

You have not read the next phrase:
Choose what to pay based on what you can afford by the value RakNet has brought to your development. If you can only afford the minimum we appreciate that.

The minimum is 100$.

Bye
by stef_
Sat Dec 30, 2006 3:44 pm
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: Irrlicht embedded in a wxWidgets control
Replies: 40
Views: 20706

Mhm, I'm reading a little more CIrrDeviceLinux.cpp::createWindow(...) and by now I can also say "my path" inside this function. There is a section like this (pseudocode): if (DriverType==video::EDT_OPENGL) { isAvailableGLX = glXQueryExtension(...) glXQueryVersion(..., &maior, &mino...
by stef_
Fri Dec 29, 2006 4:59 pm
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: Irrlicht embedded in a wxWidgets control
Replies: 40
Views: 20706

> Please, provide Makefile and if the neccesary modules aren't compiled in that Makefile tell me how to compile them separately, because I don't know *cpp's which refer to #include'd *h's. Mhm, every time a library comes with a pkg-config file I use it when compiling. Of course gtk (as well as all o...
by stef_
Thu Dec 28, 2006 10:33 pm
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: Irrlicht embedded in a wxWidgets control
Replies: 40
Views: 20706

I'm happy to post here my testbed application hoping that someone like hybrid commits a complete solution in svn :) obviously not my quick and dirty one... Feel free to improve this example... #include <unistd.h> #include <iostream> #include <gtk/gtk.h> #include <gdk/gdkx.h> #include <irrlicht.h> us...
by stef_
Thu Dec 28, 2006 3:53 pm
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: Irrlicht embedded in a wxWidgets control
Replies: 40
Views: 20706

@kornerr The smallest (but incomplete) working patch It's something like this (I have followed mandrav patch): diff -u SIrrCreationParameters.h.orig SIrrCreationParameters.h @@ -24,6 +24,8 @@ HighPrecisionFPU = false; EventReceiver = 0; WindowId = 0; + display = NULL; + xid = 0; SDK_version_do_not_u...
by stef_
Sun Dec 24, 2006 1:15 am
Forum: Beginners Help
Topic: Help My Edit Boxes Return Jargon
Replies: 9
Views: 507

You can debug yourself a little more, changing: if (SelectedObject != -1) { SMModDirectory->setText(stringw(SMModDir[SelectedObject]).c_str()); } with: if (SelectedObject != -1) { printf ("[debug] SelectedObject: %d\n", SelectedObject); printf ("[debug] SMModDir[SelectedObject]: %s\n&...
by stef_
Fri Dec 22, 2006 7:27 pm
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: Irrlicht embedded in a wxWidgets control
Replies: 40
Views: 20706

I'm interested in using irrlicht(1.2) inside a gtk application (with debian/linux). I know irrlicht & gtk "quite" well and I have used the method described by mandrav and it works perfectly (tested with EDT_SOFTWARE, EDT_SOFTWARE2 and EDT_OPENGL). I have only changed the SIrrlichtCreat...
by stef_
Sun Dec 17, 2006 1:00 am
Forum: Beginners Help
Topic: Irrlicht in Architectual Visualization
Replies: 1
Views: 225

> I want to make a 3D, FPS type walkthrough so our customers can move through their > airport and inspect/intract with their "future" equipment. You shoud read the supported formats of irrlicht: http://irrlicht.sourceforge.net/features.html#supportedformats Then you can try to modify the t...