Game Editor Source Code

Questions, comments and discussion about the Game Editor development.

Re: Game Editor Source Code

Postby summer_goth » Mon Oct 20, 2008 3:19 pm

That's great Makslane!

I will download it tomorrow and see in what way I'll be able to help. :D
User avatar
summer_goth
 
Posts: 153
Joined: Fri Jun 22, 2007 8:07 am
Location: South Africa
Score: 5 Give a positive score

Re: Game Editor Source Code

Postby makslane » Mon Oct 20, 2008 11:49 pm

:-)
Game Editor is an open source game creator software that's wants to pay it's developers to keep evolving.
If you like Game Editor, make a review!
makslane
Site Admin
 
Posts: 3947
Joined: Sat Apr 05, 2003 6:47 pm
Score: 182 Give a positive score

Re: Game Editor Source Code

Postby qingingsoft » Tue Oct 21, 2008 12:11 am

OK, so now i've got the source code and dependencies needed, but i dont understand the last part of the compilation instructions. It says to use gamecontrol::createengines() function to create bin files from the compiled executables. How do i do that? And what are the bin files for? Are those the executables on the target devices?

Thanks!
qingingsoft
 
Posts: 9
Joined: Sun Oct 19, 2008 6:15 pm
Score: 0 Give a positive score

Re: Game Editor Source Code

Postby makslane » Tue Oct 21, 2008 1:49 am

Try compile the editor version first. The bin files are compressed executable engines (stand alone version) for the stand alone games.
To make the editor, you don't need generate the stand alone version.
Game Editor is an open source game creator software that's wants to pay it's developers to keep evolving.
If you like Game Editor, make a review!
makslane
Site Admin
 
Posts: 3947
Joined: Sat Apr 05, 2003 6:47 pm
Score: 182 Give a positive score

Re: Game Editor Source Code

Postby qingingsoft » Tue Oct 21, 2008 3:39 am

Ok, so how do I go about compiling just the editor? And, do i have to compile every dependency first, like Raknet, LLVM, clang, etc, since each one of them comes with its msvc project file? And sorry if this questions are somewhat stupid. :?
qingingsoft
 
Posts: 9
Joined: Sun Oct 19, 2008 6:15 pm
Score: 0 Give a positive score

Re: Game Editor Source Code

Postby summer_goth » Tue Oct 21, 2008 8:23 am

Wow. Going through the code at the moment. It's quite a complex beast you've got here Makslane. It's going to take a while to figure everything out. Very impressive project. :)
User avatar
summer_goth
 
Posts: 153
Joined: Fri Jun 22, 2007 8:07 am
Location: South Africa
Score: 5 Give a positive score

Re: Game Editor Source Code

Postby makslane » Tue Oct 21, 2008 10:50 am

qingingsoft wrote:Ok, so how do I go about compiling just the editor? And, do i have to compile every dependency first, like Raknet, LLVM, clang, etc, since each one of them comes with its msvc project file?


Take a look on the compilation instructions here:
http://game-editor.svnrepository.com/sv ... lation.txt

To make the current interface of the editor (gameEditor project), you need to get and compile the RakNet and LLVM with clang (but if you comment few references to the LLVM in the code you can compile without the LLVM and clang). To compile the new interface, you will need to get the wxWidgets too.

After compile this libraries, just build the whole solution in the Visual Studio or type make in the Linux.
Game Editor is an open source game creator software that's wants to pay it's developers to keep evolving.
If you like Game Editor, make a review!
makslane
Site Admin
 
Posts: 3947
Joined: Sat Apr 05, 2003 6:47 pm
Score: 182 Give a positive score

Re: Game Editor Source Code

Postby makslane » Tue Oct 21, 2008 10:53 am

summer_goth wrote:Wow. Going through the code at the moment. It's quite a complex beast you've got here Makslane. It's going to take a while to figure everything out. Very impressive project. :)


I need to write some explanations about the software structure and concepts ideas!
Game Editor is an open source game creator software that's wants to pay it's developers to keep evolving.
If you like Game Editor, make a review!
makslane
Site Admin
 
Posts: 3947
Joined: Sat Apr 05, 2003 6:47 pm
Score: 182 Give a positive score

Re: Game Editor Source Code

Postby summer_goth » Tue Oct 21, 2008 1:44 pm

I would never have been able to code something like Game Editor. It's a joy to see the code behind it all.
User avatar
summer_goth
 
Posts: 153
Joined: Fri Jun 22, 2007 8:07 am
Location: South Africa
Score: 5 Give a positive score

Re: Game Editor Source Code

Postby qingingsoft » Wed Oct 22, 2008 12:37 am

OK, so now im not finding anywhere in visual studio 2008 where to configure the projects as multithreaded. Can someone point me in the right direction please?

thanks
qingingsoft
 
Posts: 9
Joined: Sun Oct 19, 2008 6:15 pm
Score: 0 Give a positive score

Re: Game Editor Source Code

Postby makslane » Wed Oct 22, 2008 1:52 am

Go to the Project Properties -> Configuration Properties -> C/C++ -> Code Generation -> Runtime Library
Game Editor is an open source game creator software that's wants to pay it's developers to keep evolving.
If you like Game Editor, make a review!
makslane
Site Admin
 
Posts: 3947
Joined: Sat Apr 05, 2003 6:47 pm
Score: 182 Give a positive score

Re: Game Editor Source Code

Postby qingingsoft » Wed Oct 22, 2008 4:02 am

OK, thanks, i got that part figured out, and I was able to compile most of the projects, but all im ending up with is a bunch of .obj files, and some .pdb files. Im not seeing any .exes or .dlls anywhere. What was the problem?
qingingsoft
 
Posts: 9
Joined: Sun Oct 19, 2008 6:15 pm
Score: 0 Give a positive score

Re: Game Editor Source Code

Postby makslane » Wed Oct 22, 2008 11:27 am

The gameEditor and wxGameEditor projects generate .exe files in the output folder in the main solution folder.
Game Editor is an open source game creator software that's wants to pay it's developers to keep evolving.
If you like Game Editor, make a review!
makslane
Site Admin
 
Posts: 3947
Joined: Sat Apr 05, 2003 6:47 pm
Score: 182 Give a positive score

Re: Game Editor Source Code

Postby gio.degio » Wed Oct 22, 2008 10:35 pm

Hi, great thing!
I've found Game Editor great, and I think I've some usefull ideas.
I will help for development with good C++ Windows / Linux programming skills.
see you soon.

Giorgio Degioanni (Degio), Italy
gio.degio
 
Posts: 1
Joined: Fri Sep 07, 2007 9:11 am
Score: 0 Give a positive score

Re: Game Editor Source Code

Postby makslane » Thu Oct 23, 2008 11:19 am

Thanks :-)
Game Editor is an open source game creator software that's wants to pay it's developers to keep evolving.
If you like Game Editor, make a review!
makslane
Site Admin
 
Posts: 3947
Joined: Sat Apr 05, 2003 6:47 pm
Score: 182 Give a positive score

PreviousNext

Return to General

Who is online

Users browsing this forum: No registered users and 1 guest

cron