Page 7 of 93

Re: Dungeon Editor Progress

Posted: Wed Apr 25, 2012 12:14 pm
by Darklord
Hey guys, nice couple of articles, I shall have to take a peek. :)

Daniel.

Re: Dungeon Editor Progress

Posted: Wed Apr 25, 2012 1:06 pm
by darkhaven3
Morgan wrote:
petri wrote: That's a good question. We actually don't have a level editor at all. All levels have been coded in a text editor :)
Could you share (commented?) sources of any existing level and describe how to connect custom dungeon to LoG?

I think if text editor was nice for your team, it would be nice for majority of modders too :)
EDIT by petri: removed Lua bytecode dump. Distributing extracted assets is against our modding terms. While in this case there was no harm done, we don't want to give mixed messages about what is ok and what is not.

Certain bytes are not included in the dump due to limitations of the forum software, but this is what a raw dump of a dungeon's scriptfile looks like. The map structure is there on the bottom, and entities are described (as you can see up top) by ent name and by a few extra parameter bytes that I frankly have no goddamn idea what the functions of are at this time.

Re: Dungeon Editor Progress

Posted: Wed Apr 25, 2012 2:39 pm
by naim
Curunir wrote:Here's a pretty neat article on Lua, at least is looks like it's neat, I am a complete beginner:

http://www.gamedev.net/page/resources/_ ... -lua-r1932
Thats an article about how you implement a LUA VM in your own software and glue functions to make them scriptable.

For a mapper a tutorial on how you actually script LUA would be more interesting ;)

http://lua-users.org/wiki/TutorialDirectory

Re: Dungeon Editor Progress

Posted: Wed Apr 25, 2012 3:10 pm
by Curunir
naim wrote: Thats an article about how you implement a LUA VM in your own software and glue functions to make them scriptable.

For a mapper a tutorial on how you actually script LUA would be more interesting ;)

http://lua-users.org/wiki/TutorialDirectory
Guilty as charged, I thought it was a more developer-oriented article but I don't know the first thing about programming, so ... :D
Thanks a lot for the link!

Re: Dungeon Editor Progress

Posted: Wed Apr 25, 2012 4:09 pm
by azidahaka
since i'm clueless about lua, would it still be possible to make dungeons with notepad like shown in the link before? it seems ver fast nice and confortable way to make a dungeon; or at least easier than learning a new programming language :?:

Re: Dungeon Editor Progress

Posted: Wed Apr 25, 2012 4:12 pm
by Darklord
azidahaka wrote:since i'm clueless about lua, would it still be possible to make dungeons with notepad like shown in the link before? it seems ver fast nice and confortable way to make a dungeon; or at least easier than learning a new programming language :?:
I think dungeons will be created in a graphical interface, it's scripting that will be done in LUA. Hopefully we'll be able to copy simple LUA files to make basic puzzles and such quite easily. I think we'll have to wait and see really.

Daniel.

Re: Dungeon Editor Progress

Posted: Wed Apr 25, 2012 5:46 pm
by Morgan
darkhaven3 wrote: EDIT by petri: removed Lua bytecode dump. Distributing extracted assets is against our modding terms. While in this case there was no harm done, we don't want to give mixed messages about what is ok and what is not.
To avoid such .. misconceptions i've asked an example of any level with comments and instructions :) WYSIWYG editor is good and, may be, nessesary thing, but it will be released sometime in future while src & instruction shouldn't take too many time :)

Re: Dungeon Editor Progress

Posted: Wed Apr 25, 2012 8:52 pm
by petri
Morgan wrote:To avoid such .. misconceptions i've asked an example of any level with comments and instructions :) WYSIWYG editor is good and, may be, nessesary thing, but it will be released sometime in future while src & instruction shouldn't take too many time :)
Well, details of level editing haven't been locked down yet and there is no support for loading user created dungeons, so it's a bit early to start writing tutorials and docs...

Re: Dungeon Editor Progress

Posted: Wed Apr 25, 2012 8:58 pm
by petri
Darklord wrote:I think dungeons will be created in a graphical interface, it's scripting that will be done in LUA. Hopefully we'll be able to copy simple LUA files to make basic puzzles and such quite easily. I think we'll have to wait and see really.
btw. it's "Lua" (not LUA) :) Lua is a portuguese word for moon.

Re: Dungeon Editor Progress

Posted: Wed Apr 25, 2012 9:04 pm
by Darklord
Heh that's me showing off my lack of knowledge on the subject of Lua! ;)

Daniel.