My KeyInput Modification

Discuss about anything related to the Irrlicht Engine, or read announcements about any significant features or usage changes.
Post Reply
jimon
Posts: 20
Joined: Sun Nov 20, 2005 7:46 pm
Location: Ukraine, Kiev

My KeyInput Modification

Post by jimon »

I had very big error's with keys event receiver in irrlicht
I was needed use more than one keys in one moment :)
SEvent.KeyInput is really sucks !

today, my friend PAX gave me very interested class (MyInput class)
for WndProc callback function

I doing some irrlicht source modifications :)
added to SEvent.KeyInput structure this variables :

Code: Select all

WPARAM wParam;
LPARAM lParam;
bool Key_Status;
and I wrote some simple example :
"how to use this class and my engine source modification
for use more than one keys in ONE update cycle :)"

here the url : http://fuckoffhack.nm.ru/irr/test.rar
400 kb
rar arhive with : engine files with modification,irrlicht dll,and two test's
1) test with my modification
2) test without my modification

in the test's : move cube by cursor keys

fell difference in quality :)

2 Niko : please, add this modification to irrlicht 0.15 :)
my english is very bad,sorry
Quall
Posts: 154
Joined: Mon Mar 07, 2005 10:16 pm

Post by Quall »

Guess you must have missed this:
http://irrlicht.sourceforge.net/phpBB2/ ... hp?t=10322

yours looks pretty nice, but this is much easier with the same result. It is easier to do abstract classes.
Post Reply