Jump to content



Photo

Au3IrrLicht


  • Please log in to reply
231 replies to this topic

#1 A. Percy

A. Percy

    VW Sedan user

  • Active Members
  • PipPipPipPipPipPip
  • 561 posts

Posted 05 May 2008 - 02:46 PM

This is my new approach on "making tools for games" on AutoIt. Stills on early of it's development, so, missing several things. So, keep in mind it isn't have enough mature to create a game yet.

Version: 2009_08_02
http://www.box.net/shared/f9ygx6tk48

need reviews

Posted Image

It have a bug on input of FPS camera when using SceneDraw with SetViewPort or SetRenderTarget. Will be fixed when I implement a more stable event redirector. For while, you can try use SetCameraAsKeyEventReceiver( $Camera ), but it's very unstable yet :)

Edited by A. Percy, 03 August 2009 - 12:20 AM.

Só o que posso lhe dizer, bom é quando faz mal!My work:Au3Irrlicht - Irrlicht for AutoItMsAgentLib - An UDF for MSAgentAu3GlPlugin T2 - A 3D plugin for AutoIt...OpenGl Plugin - The old version of Au3GlPlugin.MAC Address Changer - Changes the MAC AddressItCopter - A dragonfly R/C helicopter simulator

Posted Image VW Bug userPosted Image

Pinheiral (Pinewood) city: http://pt.wikipedia.org/wiki/Pinheiral





#2 monoceres

monoceres

    asdf

  • MVPs
  • 3,717 posts

Posted 05 May 2008 - 03:00 PM

This is my new approach on "making tools for games" on AutoIt. Stills on early of it's development, so, missing several things. So, keep in mind it isn't have enough mature to create a game yet.

http://www.box.net/shared/f9ygx6tk48

need reviews

Very, very cool :)
This is one project I will follow like a fox (or something) :(
Your script totally traps your mouse in the GUI. I had to navigate in taskmanager with the keyboard to shut it down, so even if it's just an alpha version it's very annoying .
Ps. Is this openGL or D3D?
Posted ImageIs the link in my post broken? I do not longer own my domain, all the files are moved to my new domain.Example: http://monoceres.se/test.au3 -> http://andhen.mine.nu/monoceres.se/test.au3

#3 James

James

    jbrooksuk

  • MVPs
  • 9,468 posts

Posted 05 May 2008 - 03:01 PM

HOLY :)

This and Prospeed would create an amazing game!

Is Darth Vader supposed to appear white?

#4 monoceres

monoceres

    asdf

  • MVPs
  • 3,717 posts

Posted 05 May 2008 - 03:02 PM

HOLY :)

This and Prospeed would create an amazing game!

Is Darth Vader supposed to appear white?


Darth Vader is black for me.
Posted ImageIs the link in my post broken? I do not longer own my domain, all the files are moved to my new domain.Example: http://monoceres.se/test.au3 -> http://andhen.mine.nu/monoceres.se/test.au3

#5 jpam

jpam

    Mass Spammer!

  • Active Members
  • PipPipPipPipPipPip
  • 439 posts

Posted 05 May 2008 - 03:16 PM

awesome persy !

runs very smooth !
but darthvader is allso white on my comp

#6 James

James

    jbrooksuk

  • MVPs
  • 9,468 posts

Posted 05 May 2008 - 03:18 PM

I'm trying to make a jump function, but as there is no X value defined (at least, I do not know of) then I cannot get anywhere.

#7 A. Percy

A. Percy

    VW Sedan user

  • Active Members
  • PipPipPipPipPipPip
  • 561 posts

Posted 05 May 2008 - 04:36 PM

White?!... Interesting
Change the Device line as follow:
CreateDevice( 3, 640, 480, 16, 0, 0, 0 ) ;for D3D 8
or
CreateDevice( 4, 640, 480, 16, 0, 0, 0 ) ;for D3D 9

Jump function uses "j" ( for while :) )
Só o que posso lhe dizer, bom é quando faz mal!My work:Au3Irrlicht - Irrlicht for AutoItMsAgentLib - An UDF for MSAgentAu3GlPlugin T2 - A 3D plugin for AutoIt...OpenGl Plugin - The old version of Au3GlPlugin.MAC Address Changer - Changes the MAC AddressItCopter - A dragonfly R/C helicopter simulator

Posted Image VW Bug userPosted Image

Pinheiral (Pinewood) city: http://pt.wikipedia.org/wiki/Pinheiral

#8 James

James

    jbrooksuk

  • MVPs
  • 9,468 posts

Posted 05 May 2008 - 04:38 PM

Haha, as if I didn't notice that!

By the way, sound does not work either.

Edited by JamesB, 05 May 2008 - 04:41 PM.


#9 A. Percy

A. Percy

    VW Sedan user

  • Active Members
  • PipPipPipPipPipPip
  • 561 posts

Posted 05 May 2008 - 04:39 PM

Very, very cool :)
This is one project I will follow like a fox (or something) :(
Your script totally traps your mouse in the GUI. I had to navigate in taskmanager with the keyboard to shut it down, so even if it's just an alpha version it's very annoying .
Ps. Is this openGL or D3D?


OpenGL, but can be changed by you:
CreateDevice( 3, 640, 480, 16, 0, 0, 0 )

the first parameter
0 = EDT_NULL;
1 = EDT_SOFTWARE;
2 = EDT_BURNINGSVIDEO;
3 = EDT_DIRECT3D8;
4 = EDT_DIRECT3D9;
5 = EDT_OPENGL;
Só o que posso lhe dizer, bom é quando faz mal!My work:Au3Irrlicht - Irrlicht for AutoItMsAgentLib - An UDF for MSAgentAu3GlPlugin T2 - A 3D plugin for AutoIt...OpenGl Plugin - The old version of Au3GlPlugin.MAC Address Changer - Changes the MAC AddressItCopter - A dragonfly R/C helicopter simulator

Posted Image VW Bug userPosted Image

Pinheiral (Pinewood) city: http://pt.wikipedia.org/wiki/Pinheiral

#10 James

James

    jbrooksuk

  • MVPs
  • 9,468 posts

Posted 05 May 2008 - 04:44 PM

Could we not use the keys WASD for control?

#11 A. Percy

A. Percy

    VW Sedan user

  • Active Members
  • PipPipPipPipPipPip
  • 561 posts

Posted 05 May 2008 - 04:48 PM

Could we not use the keys WASD for control?


not yet
Só o que posso lhe dizer, bom é quando faz mal!My work:Au3Irrlicht - Irrlicht for AutoItMsAgentLib - An UDF for MSAgentAu3GlPlugin T2 - A 3D plugin for AutoIt...OpenGl Plugin - The old version of Au3GlPlugin.MAC Address Changer - Changes the MAC AddressItCopter - A dragonfly R/C helicopter simulator

Posted Image VW Bug userPosted Image

Pinheiral (Pinewood) city: http://pt.wikipedia.org/wiki/Pinheiral

#12 James

James

    jbrooksuk

  • MVPs
  • 9,468 posts

Posted 05 May 2008 - 04:49 PM

OK, well what about the abillity to map keys? And mouse scroll zoom!

Sorry. I know its Alpha, but you have to have ideas!

#13 A. Percy

A. Percy

    VW Sedan user

  • Active Members
  • PipPipPipPipPipPip
  • 561 posts

Posted 05 May 2008 - 04:51 PM

OK, well what about the abillity to map keys? And mouse scroll zoom!

Sorry. I know its Alpha, but you have to have ideas!


Yes. And you can help me :)
Só o que posso lhe dizer, bom é quando faz mal!My work:Au3Irrlicht - Irrlicht for AutoItMsAgentLib - An UDF for MSAgentAu3GlPlugin T2 - A 3D plugin for AutoIt...OpenGl Plugin - The old version of Au3GlPlugin.MAC Address Changer - Changes the MAC AddressItCopter - A dragonfly R/C helicopter simulator

Posted Image VW Bug userPosted Image

Pinheiral (Pinewood) city: http://pt.wikipedia.org/wiki/Pinheiral

#14 James

James

    jbrooksuk

  • MVPs
  • 9,468 posts

Posted 05 May 2008 - 04:58 PM

Sure :)

Couple of ideas:
  • Key Mapping
  • Mouse Zoom
  • Maybe model in the camera view
  • Sound - Mine doesn't work maybe it shouldn't?
If sound does work then I have a problem.

#15 A. Percy

A. Percy

    VW Sedan user

  • Active Members
  • PipPipPipPipPipPip
  • 561 posts

Posted 05 May 2008 - 05:05 PM

Sure :)

Couple of ideas:

  • Key Mapping
  • Mouse Zoom
  • Maybe model in the camera view
  • Sound - Mine doesn't work maybe it shouldn't?
If sound does work then I have a problem.


The project: A wrapper (a max of possible) of IrrLicht functions to AutoIt
So, Key Mapping, Mouse zoom, camera view model, will be consequence. But in same time, I'll making a shooter game to test all functions, so, I'll make all these features too.
Sound will be another chapter, after making the "graphical" part.
Só o que posso lhe dizer, bom é quando faz mal!My work:Au3Irrlicht - Irrlicht for AutoItMsAgentLib - An UDF for MSAgentAu3GlPlugin T2 - A 3D plugin for AutoIt...OpenGl Plugin - The old version of Au3GlPlugin.MAC Address Changer - Changes the MAC AddressItCopter - A dragonfly R/C helicopter simulator

Posted Image VW Bug userPosted Image

Pinheiral (Pinewood) city: http://pt.wikipedia.org/wiki/Pinheiral

#16 James

James

    jbrooksuk

  • MVPs
  • 9,468 posts

Posted 05 May 2008 - 06:13 PM

Keep it up then! You have to release the shooter game when it's done!

#17 CoderDunn

CoderDunn

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 345 posts

Posted 05 May 2008 - 11:10 PM

All I have to say is ... Holy SH**

Amazing work man. Great job. All you need is the torch animations :)

It took me a while to get it working becuase it kept saying

CreateDevice( 5, 640, 480, 16, 0, 0, 0 )
^ ERROR


Until I ran it in x86 mode and it runs great. When running in 64 bit, PluginOpen() fails and returns -1.

~ Hallman

Edited by Hallman, 05 May 2008 - 11:14 PM.


#18 Skrip

Skrip

    Psychonaut

  • Active Members
  • PipPipPipPipPipPip
  • 2,340 posts

Posted 06 May 2008 - 04:00 AM

Hooollyyyyy....shit...please keep working on this!

We're trapped in the belly of this horrible machine.And the machine is bleeding to death...


#19 A. Percy

A. Percy

    VW Sedan user

  • Active Members
  • PipPipPipPipPipPip
  • 561 posts

Posted 06 May 2008 - 12:54 PM

A little update released today.
Added functions: AddChild, SetAnimationSpeed and CreateFlyStraightAnimator.
Só o que posso lhe dizer, bom é quando faz mal!My work:Au3Irrlicht - Irrlicht for AutoItMsAgentLib - An UDF for MSAgentAu3GlPlugin T2 - A 3D plugin for AutoIt...OpenGl Plugin - The old version of Au3GlPlugin.MAC Address Changer - Changes the MAC AddressItCopter - A dragonfly R/C helicopter simulator

Posted Image VW Bug userPosted Image

Pinheiral (Pinewood) city: http://pt.wikipedia.org/wiki/Pinheiral

#20 Lakes

Lakes

    Universalist

  • Active Members
  • PipPipPipPipPipPip
  • 760 posts

Posted 06 May 2008 - 01:35 PM

Wow!!
Added HotKeySet("{ESC}", "quit") at the start

and Func quit()
$Msg = $GUI_EVENT_CLOSE
EndFunc at the end for easy escape route. :)




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users