Is there game engine that is based on irrlicht?
Is there game engine that is based on irrlicht?
as the great irrlicht is mostly render engine ++ , do you know attempts to build game engine on top of irrlicht ?
Thanks
Thanks
Re: Is there game engine that is based on irrlicht?
Sorry, moving this topic, the FAQ sub-forum is not for questions.
And yeah, once in a while someone starts a game-engine, but I don't follow them too much usually.
And yeah, once in a while someone starts a game-engine, but I don't follow them too much usually.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Re: Is there game engine that is based on irrlicht?
any links to some unfinished game engines ?
Re: Is there game engine that is based on irrlicht?
Check this forum You can find here a some game engines based on Irrlicht.
Library helping with network requests, tasks management, logger etc in desktop and mobile apps: https://github.com/GrupaPracuj/hermes
Re: Is there game engine that is based on irrlicht?
yep im scanning the forum for 2 days now , found some stuff mostly games and projects
and not realy any game engines ( that are good and working not version 0.000001's)
and not realy any game engines ( that are good and working not version 0.000001's)
Re: Is there game engine that is based on irrlicht?
Most of us here are simple programmers who use irrlicht for simple one-off projects or work for clients, and the ones that *have* taken the trouble to develop a full fledged game-engine with irrlicht almost never publicly release their tech because of the financial possibilities of marketing one (see Niko's very own CopperCube engine for an example, though he probably didnt use irrlicht as we know it )
Your only options are to either develop your own engine, or try contacting members to see if they are willing to license out their engines for you to use.
Seeing as we're on this topic:
do you devs feel that irrlicht *should* have a formal spinoff Game-Engine project?
I know in the past I've read discussions about how far irrlicht could be taken, and the decision was always to keep irrlicht the lightweight rendering engine that it is.
I'm also aware that the other difficulty would be managing such a project, more people would need to volunteer because it would be unfair to expect the devs to do it
How about doing it as another irrlicht Tutorial/Sample project?
the Sample would show how to integrate Physics (eg, Bullet), Audio (eg, irrKlang) and Networking (eg, enet) into a generic API framework built around irrlicht, more of a starting point for aspiring game/engine developers rather than an actual engine
Your only options are to either develop your own engine, or try contacting members to see if they are willing to license out their engines for you to use.
Seeing as we're on this topic:
do you devs feel that irrlicht *should* have a formal spinoff Game-Engine project?
I know in the past I've read discussions about how far irrlicht could be taken, and the decision was always to keep irrlicht the lightweight rendering engine that it is.
I'm also aware that the other difficulty would be managing such a project, more people would need to volunteer because it would be unfair to expect the devs to do it
How about doing it as another irrlicht Tutorial/Sample project?
the Sample would show how to integrate Physics (eg, Bullet), Audio (eg, irrKlang) and Networking (eg, enet) into a generic API framework built around irrlicht, more of a starting point for aspiring game/engine developers rather than an actual engine
Re: Is there game engine that is based on irrlicht?
im with you . i just want to lean how to build simple game from start to end , all i have found never fully compiled even ....
Re: Is there game engine that is based on irrlicht?
Nah. No one engine suits everything. Just take a look at $whatever_game_engine, be it unity, xna, etc. It always has limitations on what you can do.do you devs feel that irrlicht *should* have a formal spinoff Game-Engine project?
Re: Is there game engine that is based on irrlicht?
well i just need for learning the source code
Re: Is there game engine that is based on irrlicht?
For that you can take a look at open-source games (like SuperTuxKart for example).
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
-
- Posts: 758
- Joined: Mon Mar 31, 2008 3:32 pm
- Location: Bulgaria
Re: Is there game engine that is based on irrlicht?
@umen: I personally always prefer to write everything I need from scratch. That`s the way I`ve been learning all along. I assume everything else as more-or-less copying or imitating. Not to mention that I rarely like another person`s implementation on sth. I find digging another persons` code kinda humiliating and feel it as a personal failure I cannot figure out solution myself. Getting your hands dirty building a project from flat ground is the way to go IMO. Plus, then you can always say "It`s me who did that all alone." and you won`t burn in hell after that.
If you`re too lazy to fix the issues that prevent a ready project from compiling, well, that`s just bad...
If you`re too lazy to fix the issues that prevent a ready project from compiling, well, that`s just bad...
"Although we walk on the ground and step in the mud... our dreams and endeavors reach the immense skies..."
Re: Is there game engine that is based on irrlicht?
hehe man its not to mimic other ppl stuff its for me like reading a book .
i like to see other ppl source ( like JDK and STL sources ... ) .
every body has its methods to learn my is reading source .
i like to see other ppl source ( like JDK and STL sources ... ) .
every body has its methods to learn my is reading source .
-
- Posts: 1186
- Joined: Fri Dec 29, 2006 12:04 am
-
- Competition winner
- Posts: 688
- Joined: Mon Sep 10, 2012 8:51 am
Re: Is there game engine that is based on irrlicht?
On the topic, I have been working on a game "overhead" in my spare time. Alot of games have similar attributes (they all have characters for one thing), which each have their own aspects that are also quite common (e.g. player speed). Sure, there are some differences, but it's possible to create an "overhead" containing classes that can be inherited from (to establish more aspects for desired gameplay) and a management class that handles how things generally fit together (whether they are needed or not). As you can imagine, it's very abstract at this point, but at least it will get the basics out of the way. And hopefully it will make full implementation easier.