Jump to content
IGNORED

ISOmetric RPG in development


enthusi

Recommended Posts

I found "tiled" to be a very nice map editor. You can create your own attribute to the tiles and export the maps as xml. It is currently in use in my upcoming game. It saves a lot of time in designing levels.

 

Easy to parse with python...

 

import sys
import json

dir=str(sys.argv[len(sys.argv)-1])
fname= dir + '.json'
with open(fname) as f:
   raw = f.read()
data = json.loads(raw)
fname= dir + '.c'
with open(fname, 'w') as f:
    f.write("#define mapheight " + str(data['height']) + '\n')
    f.write("#define mapwidth " + str(data['width']) + '\n')
    layers = data['layers']
    nrlayers = 0
    for l in layers:
        if l['name'] == 'Tile Layer 1':
            printmap(f, l['data'], data['width'], 'lower')
            nrlayers = nrlayers + 1
Edited by karri
Link to comment
Share on other sites

  • 1 year later...
4 hours ago, Blany said:

Is there any update or further demo's on this title? It's definitely something I would buy when it's released.

Very promising game indeed but no news in the past 2 years... Since they released the bastion demo, we haven't hear anything from them unfortunately...

 

@enthusi do you have any update?

Edited by LordKraken
Link to comment
Share on other sites

Hi :)

The project is alive but pretty much on hold as main contributors took some time off from it.

While there wasnt too much Atari Lynx stuff going on in the meantime we were quite active in general.

A boxed release of Assembloids is next on list. 'Lacim's Legacy' is something the whole team looks forward to, so rest assured it will come :)

Eventually :)

 

  • Like 3
  • Thanks 1
Link to comment
Share on other sites

  • 8 months later...
  • 1 year later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...