![]() |
![]() +- Save-Point (https://www.save-point.org) +-- Forum: Material Development (https://www.save-point.org/forum-8.html) +--- Forum: Tools (https://www.save-point.org/forum-42.html) +--- Thread: ![]() Pages:
1
2
|
MapMaker (for RMXP) - DerVVulfman - 06-06-2020 MAPMAKER
for RPGMaker XP This is a handy-dandy little tool that you need to have!
Does it Slice? Does it dice? Does it take your favorite drinks and chills it with its own flavored ice cubes? Does it bake your favorite treats and leave no trace in its non-stick surface? Nope. You wish....
This is a game-development tool made to create png files of the maps within your game. While it does not render sprites, it does render every tile in your map, generating a map which it saves within a Maps folder located within your project's root folder.
DOWNLOAD LINK: ![]() https://app.box.com/s/ip9eje1u3tth5mtjy0uth5mqukz1h31t Optional Box.com link INSTALLATION: Very simple. After downloading the .Zip file, extract it into your game's root folder. The file package contains:
INSTRUCTIONS: Merely run the MapMaker.exe file and you will see a menu, the left side being the list of all the scripts in your project, and the right the render and decision windows.
All major control is in the left side. Clicking on a map within the map list window chooses whichever map you want to render. And after selecting the map, you may first 'Generate' the map which will eventually appear, and then 'Save' the map as a PNG file.
More in depth descriptions of the system, how it works, the INI file and more are in the Read Me.txt file
DURATION: Okay, it may take some time to make a map. Small maps, virtually no time at all. Large maps of 200x200 quite a bit of time. And when it comes to actively creating and saving the PNG file, much more time is expended. So if you have a number of large maps to create, feel free to get a bit to eat while it is running.
REMOVAL: Well, other than the newly created Maps folder, you merely need to remove the contents from the installation package (except perhaps the RGSS104E.DLL), and very likely the log file it creates: MapMaker.log.
RE: MapMaker (for RMXP) - DerVVulfman - 06-25-2020 BUMP
I just updated the package, now removing the need for one of the dll files. I fixed an issue if you are running batch map conversions while not in focus, and a very detailed read me document. RE: MapMaker (for RMXP) - JayRay - 01-13-2023 As a reviewer of the Mapmaker tool, I find it completely valuable not just to export a map file, but also as a tool to allow a map PLANNING tool for use in other engines. Being able to map out levels and visualize what your map would be with the near infinite size of tiles is awesome. With that being said, I have a simple suggestion, if it's even possible to do. Can there be an end script when exporting that offers the ability to... A. Seperate the maps by the tileset layers? B. Pictures! Here's my thinking behind this idea. By seperating maps by their layering, one can already preplan parallaxes and overhangs for the maps, something that could be visually assessed. It wouldn't need to be something that just always happens, as some people would still want to cut things out, but one of the more annoying parts of creating parallax maps is the idea of cutting parts of their parallax maps back out and re-entering them as a new layer. With this addon, the work would somewhat be done FOR them. Secondly, PICTURES! - while having characters able to be on the map, what might be a great boon, is the ability to have any pictures also appear, as unlike characters, picture layers are set, one over another, and can easily be manipulated in the editor to create composites as characters themselves can't always stand on the same tile, and when they do, having one take a z-priority over another is sometimes problematic. Cirrently I have the ability to add the panorama and the fog or not, the characters/events or not, and even get away from the placed tiles entirely, but... beyond those settings in the INI file, I'm curious if seperating the tilemaps by their placed layer is possible, or even feasible. Otherwise, it's a great too!! RE: MapMaker (for RMXP) - DerVVulfman - 01-14-2023 Well, what do you know about that.... You now have the ability to export maps with just the ground layer, the lower layer or the upper layer visible, not just ON/OFF. However, pictures in a map are governed by the show-picture event, an who knows what a person will set up for rotating pictures, huds or whatnot. So yep, the tool has once again been upgraded. RE: MapMaker (for RMXP) - DerVVulfman - 02-16-2025 MAINTENANCE UPGRADE
Currently, I do not know the cause as to why the first attached download link is broken. Hopefully, this will be looked into. However, I have uploaded a new download link for MapMaker v5 There was a bit of confusion with version 5, and partly my fault. Within the .ini file for Mapmaker, you may turn on/off different features of a map with simple true/false settings. However, that is now how one turns the tiles (ergo the drawn map) on or off. Sadly, the tile setting was indeed set to true , and that was a goof on my part. Actually, you use settings of 0 to 4 to handle the tiles. A setting of 0 turns the all the tiles off. A setting of 1 turns on the ground layer. A setting of 2 turns on the lower layer, a setting of 3 turns on the upper layer, and a setting of 4 turns on all three layers simultaneously. And for those unaware, the instruction manual does note that you can hit [ESC] to bring up a built-in control panel to handle map options, including a "Generate All Maps" option so you don't have to do one map after the other. The only reason for the file size difference between the defective link and current is likely my new inclusion within the ReadMe file about the tile layer handling. RE: MapMaker (for RMXP) - Ace_V - 02-24-2025 As someone who had to painstakingly screenshot and assemble those to have copies of my map, this is a really invaluable tool! However, I get this error whenever I try to export a map: RE: MapMaker (for RMXP) - kyonides - 02-24-2025 Easy fix. Just make sure the custom Spriteset_Map includes this line: Code: @preview = Bitmap.new(@width, @height) So it might say the following: Code: #=============================================================================== Later on you will find a method called refresh_preview. Below you will find the second fix. Or is it a workaround? ![]() Code: def refresh_preview How To Implement These Fixes
Now you can open it. ![]() The problem is that it will throw the error after trying to generate the map. ![]() That is why I came up with the second fix aka the workaround a couple of minutes later. Yet, there is a chance you will come across a Tile script that makes the executable crash at line 33 thanks to a TypeError bug... I will ignore any further questions ![]() ![]() RE: MapMaker (for RMXP) - Ace_V - 02-24-2025 (02-24-2025, 12:02 PM)kyonides Wrote: I will ignore any further questions ![]() RE: MapMaker (for RMXP) - Ace_V - 02-24-2025 This is the error I get when I try to generate a map preview. I've also tried clearing the cache (through the ESC menu) but it results in the same error and blank generated map file. RE: MapMaker (for RMXP) - DerVVulfman - 02-24-2025 (02-24-2025, 03:44 PM)Ace_V Wrote: This is the error I get when I try to generate a map preview. Your issue is related to this: (02-16-2025, 01:37 AM)DerVVulfman Wrote: There was a bit of confusion with version 5, and partly my fault. Within the .ini file for Mapmaker, you may turn on/off different features of a map with simple true/false settings. However, that is now how one turns the tiles (ergo the drawn map) on or off. Sadly, the tile setting was indeed set to true , and that was a goof on my part. I just checked the download. For some reason, the corrected Ini file and updated help file was not in the package. I don't know WHY the update did not take, but... I just re-uploaded the fixed version... fixed insofar as just fixing the INI file and update the text file. From the INI file: Wrong Correct start_tilesize=32 start_tilesize=32 pan_on=false pan_on=false til_on=true til_on=4 cha_on=false cha_on=false fog_on=false fog_on=false maninstr_on=false maninstr_on=false But then again, hit the [ESC] button when you have the menu up, and you can adjust values that way. |