Search found 9 matches

by jeffm2501
Sat Mar 24, 2007 11:58 pm
Forum: Beginners Help
Topic: How to know wich screen resolution
Replies: 1
Views: 237

you can get a list if the supported video modes by calling.

video::IVideoModeList* getVideoModeList() on the device.
by jeffm2501
Thu Mar 22, 2007 6:27 pm
Forum: Beginners Help
Topic: resizing a 2D Image
Replies: 1
Views: 275

If you are using IVideoDriver::draw2DImage, it has a version that takes a destRect. You can make that destination rect be any size, and it will be scaled to fit.


virtual void draw2DImage(video::ITexture* texture, const core::rect<s32>& destRect,
const core::rect<s32>& sourceRect, const core ...
by jeffm2501
Thu Mar 22, 2007 5:17 am
Forum: Bug reports
Topic: Possible Font bug ???
Replies: 8
Views: 1567

I've made a patch that uses the image paths in the XML relative to the XML file itself.

http://sourceforge.net/tracker/index.ph ... tid=540678
by jeffm2501
Wed Mar 21, 2007 10:10 pm
Forum: Beginners Help
Topic: the holy matrix4
Replies: 5
Views: 387

a matrix is a mathematical structure that is used to apply various transformations to number sets, and is heavily used in 3d graphics.

you may want to read the wikipedia articles on them
http://en.wikipedia.org/wiki/Matrix_(mathematics)
by jeffm2501
Tue Mar 20, 2007 6:17 pm
Forum: Open Discussion and Dev Announcements
Topic: Spam report thread
Replies: 37
Views: 12199

we kept the image verification thing too, but just added a field that asked them to answer the question "what is the name of the game". you could do 'what is the name of the engine"

I can get you the mods we did if you'd like. they were very simple.
by jeffm2501
Mon Mar 19, 2007 8:33 pm
Forum: Open Discussion and Dev Announcements
Topic: Spam report thread
Replies: 37
Views: 12199

we had similar spam problems on our phpbb, we added a simple field to the registration page that simply asks them to enter the name of our game, It has cut down our spam from 5-10 a day, to 1 or 2 a month.
by jeffm2501
Sat Mar 17, 2007 12:07 am
Forum: Beginners Help
Topic: Example for new fonts?
Replies: 1
Views: 301

Example for new fonts?

Is there an example on using the new XML fonts in 1.3?

the new font tool says
"To load your font in Irrlicht, simply use env->addFont(\"Myfont.xml\")"
in it's help text, but as far as I can see, there is no method in the IGUIEnvironment with that name.

calling getFont, with the XML just returns ...
by jeffm2501
Mon Mar 12, 2007 5:19 am
Forum: Beginners Help
Topic: Remove the Dos window
Replies: 2
Views: 286

the simplest way ( if your talking about windows ), is to use a winmain instead of a main.

if you want to have code that runs on multiple OSs then just #def it.

#ifdef _WIN32
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR pCmdLine, int nCmdShow)
#else
int main()
#endif ...
by jeffm2501
Sun Mar 11, 2007 9:40 pm
Forum: Advanced Help
Topic: Question on Dynamicly Generating Meshes
Replies: 0
Views: 478

Question on Dynamicly Generating Meshes

I'd like to ask this question about dynamically generating meshes, just to make sure I'm on the right track, before I get in too deep. I've searched the fourms and hit the tutorials, but I don't think any of them get into this.

I have the need of generating animated meshes from our own internal ...