Map generator program

You can talk about almost anything that you want to on this board.

Moderator: Moderators

Post Reply
User avatar
DRW
Posts: 2070
Joined: Sat Sep 07, 2013 2:59 pm

Map generator program

Post by DRW »

Do you know of any program that you can use to visually design video game maps?

I'm imagining the following:

In one section of the screen, you have the tile graphics.
In the other section, you have a grid where you can place the tiles.

If you change the tile graphics, the map screen is updated.

I know that Game Maker and RPG Maker can do these things. But is there maybe a small, lightweight program (maybe one that doesn't require an installation) to do such things?
Available now: My game "City Trouble".
Website: https://megacatstudios.com/products/city-trouble
Trailer: https://youtu.be/IYXpP59qSxA
Gameplay: https://youtu.be/Eee0yurkIW4
German Retro Gamer article: http://i67.tinypic.com/345o108.jpg
calima
Posts: 1377
Joined: Tue Oct 06, 2015 10:16 am

Re: Map generator program

Post by calima »

Tiled, with an output plugin or converter to write your format.
User avatar
FrankenGraphics
Formerly WheelInventor
Posts: 2033
Joined: Thu Apr 14, 2016 2:55 am
Location: Gothenburg, Sweden
Contact:

Re: Map generator program

Post by FrankenGraphics »

I use NESST precisely for this (at least for prototyping). The only drawback is that you're locked to a gobal palette setting and can't place sprite items on the map itself. Also, there's an upper limit, so you may need to piece together a string of "rooms" (gamemaker terminology) externally.

For our our zeldaesque gothic action-adventure game, we (at least that's the plan) place components in photoshop made in NESST using layers, layer folders and the grid tool for alignment, then exporting the total map as an indexed bitmap for a separate tool to parse.
http://www.frankengraphics.com - personal NES blog
User avatar
DRW
Posts: 2070
Joined: Sat Sep 07, 2013 2:59 pm

Re: Map generator program

Post by DRW »

calima wrote:Tiled, with an output plugin or converter to write your format.
I don't really need anything to write my format. The program is purely for display issues. I'll do the code myself, step by step.

Can Tiles be used as a standalone application? The website only offers an installer link.
FrankenGraphics wrote:I use NESST precisely for this (at least for prototyping).
Is this usable in a confortable way, with putting 16 x 16 tiles on the map via drag & drop etc.?
FrankenGraphics wrote:For our our zeldaesque gothic action-adventure game, we (at least that's the plan) place components in photoshop made in NESST using layers, layer folders and the grid tool for alignment, then exporting the total map as an indexed bitmap for a separate tool to parse.
I don't think using Photoshop really fits the idea of a small, portable lightweight program. :mrgreen:
Available now: My game "City Trouble".
Website: https://megacatstudios.com/products/city-trouble
Trailer: https://youtu.be/IYXpP59qSxA
Gameplay: https://youtu.be/Eee0yurkIW4
German Retro Gamer article: http://i67.tinypic.com/345o108.jpg
User avatar
FrankenGraphics
Formerly WheelInventor
Posts: 2033
Joined: Thu Apr 14, 2016 2:55 am
Location: Gothenburg, Sweden
Contact:

Re: Map generator program

Post by FrankenGraphics »

Is this usable in a confortable way, with putting 16 x 16 tiles on the map via drag & drop etc.?
Yes, or kind of: As long as your chr file is organized in 2x2 patterns, you can drag-mark 4 tiles and click anywhere on the map to stamp-clone them. It gets less comfortable once you begin reusing tiles in different metatiles though: then you have to resort to copy-paste them from one position on the map to the other using the same mark tool.

edit: this only works in recent versions, so it may not be widely known? Another "hidden" feature that was introduced is that you can scroll-wrap/align pixel contents in a character using the arrows while the chr editor window is active. Really handy!

edit2: oh, and you can drag and drop tiles within the chr space; swapping them. This helps organizing tiles a lot.
http://www.frankengraphics.com - personal NES blog
User avatar
never-obsolete
Posts: 403
Joined: Wed Sep 07, 2005 9:55 am
Location: Phoenix, AZ
Contact:

Re: Map generator program

Post by never-obsolete »

Here is my custom tool, MapEd Pro and a screenshot of nesrocks using it to hack Super Pitfall.
. That's just like, your opinion, man .
User avatar
gauauu
Posts: 729
Joined: Sat Jan 09, 2016 9:21 pm
Location: Central Illinois, USA
Contact:

Re: Map generator program

Post by gauauu »

DRW wrote:
calima wrote:Tiled, with an output plugin or converter to write your format.
Can Tiles be used as a standalone application? The website only offers an installer link.
I'm pretty sure it can. (I'm using linux and I use it standalone there) Although for windows you might have to "install" it once to extract everything. Then I think you can copy it anywhere and just run it.
DRW wrote: I don't really need anything to write my format. The program is purely for display issues. I'll do the code myself, step by step.
Huh. Sounds like a lot of extra work to me. Writing a python script to convert from tiled format to code is pretty simple. But hey, whatever floats your boat.
User avatar
gauauu
Posts: 729
Joined: Sat Jan 09, 2016 9:21 pm
Location: Central Illinois, USA
Contact:

Re: Map generator program

Post by gauauu »

The other option is the Mappy Tile Map Editor, which I know from experience CAN be run portably. I like Tiled a bit better now, but I used Mappy for a large adventure game (Anguna for GBA and DS) and it worked well.
User avatar
Jedi QuestMaster
Posts: 603
Joined: Thu Sep 07, 2006 1:08 pm
Location: United States
Contact:

Re: Map generator program

Post by Jedi QuestMaster »

Ooh! :o Mappy even has an isometric mode.
M_Tee
Posts: 427
Joined: Sat Mar 30, 2013 12:24 am
Contact:

Re: Map generator program

Post by M_Tee »

never-obsolete wrote:Here is my custom tool, MapEd Pro and a screenshot of nesrocks using it to hack Super Pitfall.
This is what I use as well. It has been a godsend.
User avatar
DRW
Posts: 2070
Joined: Sat Sep 07, 2013 2:59 pm

Re: Map generator program

Post by DRW »

gauauu wrote:The other option is the Mappy Tile Map Editor, which I know from experience CAN be run portably.
Thanks. It looks like this is exactly what I need.
M_Tee wrote:
never-obsolete wrote:Here is my custom tool, MapEd Pro and a screenshot of nesrocks using it to hack Super Pitfall.
This is what I use as well. It has been a godsend.
I downloaded and extracted it. The icon of the exe files shows me that it was written in Visual Basic 6.

I opened it, opened a dialog box inside the progtram where I have to enter a height value. I clicked OK without entering the value. The program crashes with an index out of range error.
Available now: My game "City Trouble".
Website: https://megacatstudios.com/products/city-trouble
Trailer: https://youtu.be/IYXpP59qSxA
Gameplay: https://youtu.be/Eee0yurkIW4
German Retro Gamer article: http://i67.tinypic.com/345o108.jpg
User avatar
Diskover
Posts: 213
Joined: Thu Nov 24, 2011 7:16 am
Contact:

Re: Map generator program

Post by Diskover »

Tu solución se llama TileMap
Post Reply