Search found 24 matches

by Nils:D
Wed Dec 13, 2006 8:18 pm
Forum: Beginners Help
Topic: EventReceiver Problem :s
Replies: 18
Views: 629

Ok, the code is poop: Wherever i set the destructor things, i must see a execption. And if i got it right i must not free it, right ?
by Nils:D
Wed Dec 13, 2006 7:25 pm
Forum: Beginners Help
Topic: Beginner - Want to learn C++ and Irrlicht
Replies: 7
Views: 659

If you are a programmer who had programmed with other languages before, you should haven't a problem with C++ and the tutorials from this site are very good for beginning. If C++ is your first language you should search by Google for a good tutorial in your language. I have learned C++ by programmin...
by Nils:D
Wed Dec 13, 2006 7:06 pm
Forum: Beginners Help
Topic: EventReceiver Problem :s
Replies: 18
Views: 629

I, because if you would give the things that will given free in the destructor free down, then nothing woulb be changed.
by Nils:D
Wed Dec 13, 2006 6:10 pm
Forum: Beginners Help
Topic: EventReceiver Problem :s
Replies: 18
Views: 629

I think the error is there because the Map used ever from the game and i can't close the Map. game

Code: Select all

game::~game()
{
	/*if (mapSelector)
		mapSelector->drop();

	if (metaSelector)
		metaSelector->drop();*/
}

...

...
device->closeDevice();
...
It runs.
by Nils:D
Sun Dec 10, 2006 1:34 pm
Forum: Beginners Help
Topic: EventReceiver Problem :s
Replies: 18
Views: 629

(Ich weiss...)

I know, but there is one problem: the game is to big and rapidshare is down. I can't upload it. I hoped that you can see maybe an error in the code.... Is there another FREE uploading-site (not rapidshare ;))?
by Nils:D
Sat Dec 09, 2006 9:25 pm
Forum: Beginners Help
Topic: EventReceiver Problem :s
Replies: 18
Views: 629

N I C E, THX! :) I changed ONLY the needed things (the eventreceiver was and is the main class) and everything is ok, but if I press escape or Alt+F4 then the application will be terminated with an exception. Why ? Here is the complete code: (hope it works) http://upload2.net/page/download/aWsavxuOw...
by Nils:D
Sat Dec 09, 2006 6:33 pm
Forum: Beginners Help
Topic: EventReceiver Problem :s
Replies: 18
Views: 629

Arghs, thx...that was it :) [quote=Acki]I don't know what you really mean[/quote] Ok, i'm not so good in english, sry. In other words: If you add a FPS-Camera the camera has automaticly keys (up, down, left, right). This keys can be changed (w, a, s, d). If you press one of those keys for many secon...
by Nils:D
Sat Dec 09, 2006 5:32 pm
Forum: Beginners Help
Topic: EventReceiver Problem :s
Replies: 18
Views: 629

EventReceiver Problem :s

Hi, if I press A, S or Escape, the events will be executed else nothing happens. Why ? Another Question: How is it possible to move the Model by one pressing very far ? By this code I must press to much on one of the Keys. virtual bool OnEvent(SEvent event) { if (node != 0 && event.EventType...
by Nils:D
Fri Dec 08, 2006 7:54 pm
Forum: Beginners Help
Topic: Skateboard-game: need informations
Replies: 3
Views: 222

Ok, thx. I have now 4 physikengines. But how can i move specific bodyparts by physicactions ?
by Nils:D
Fri Dec 08, 2006 7:19 pm
Forum: Beginners Help
Topic: Skateboard-game: need informations
Replies: 3
Views: 222

Skateboard-game: need informations

Hi,

i want to program a little skateboard-game because I want to know, how i can move the body from the skater realistic and i want to learn about physics. I'm ready to invest very much time in this. :) Have some one any tipps, how i can release something like this or what i need to lern before ?
by Nils:D
Sat Nov 18, 2006 2:38 pm
Forum: Off-topic
Topic: I'm looking for a program, that can make me out of Bitmaps..
Replies: 1
Views: 324

I'm looking for a program, that can make me out of Bitmaps..

Hi, i'm looking for a little program, that can makes me a map out of a black and white picture, what have on this point this black and on another point for example a more brightly black (gray or something like this) for the Heights of an Object. Is it possible and if it is where can i get this progr...
by Nils:D
Sat Oct 21, 2006 7:18 am
Forum: Beginners Help
Topic: getMesh: problems with C++
Replies: 2
Views: 146

Thx, that works :)
by Nils:D
Fri Oct 20, 2006 7:53 pm
Forum: Beginners Help
Topic: getMesh: problems with C++
Replies: 2
Views: 146

getMesh: problems with C++

Hi, i said it weeks ago in nother words: "I am a delphi programmer". Cause i have sometimes little problems with C++. It's a simple question: How must i change the getMesh-Parameters so that nothing errors appears ? error: no matching function for call to 'irr::scene::ISceneManager::getMes...
by Nils:D
Fri Oct 20, 2006 11:41 am
Forum: Beginners Help
Topic: Some questions: GUI
Replies: 5
Views: 424

I think you missunderstand me. With the Irrlicht-GUI it is at the moment like Picture1, the Controls are only in front, if i click on the created Window the Controls will be push behind the Window (Picture2): Picture1 Picture2 How can i make a window (the mainwindow of the application) looks like th...
by Nils:D
Fri Oct 20, 2006 7:56 am
Forum: Beginners Help
Topic: Some questions: GUI
Replies: 5
Views: 424

Some questions: GUI

Hi, i have a GUIWindow. IGUIEnvironment* env = device->getGUIEnvironment(); IGUIElement* root = env->getRootGUIElement(); IGUIElement* e = root->getElementFromId(5000, true); if (e) e->remove(); IGUIWindow* wnd = env->addWindow(core::rect<s32>(0,0,640,480), false, L"Modelloader", 0, 5000);...