Difference between revisions of "Map Merger"

From NSV13
Jump to navigationJump to search
imported>Oranges
m (details)
imported>SpaceManiac
(Update Python 3.7 information)
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
/tg/station uses a tool called the '''Map Merger''' to minimize differences between versions of maps and lay them out in a format known as TGM, developed by Remie. This makes changes easier for maintainers to review and less likely to conflict with changes made by others.
  
Before any change to a map, it is good to use the Map Merger tools. In a nutshell, it rewrites the map to minimize differences between different versions of the map (DreamMakers map editor rewrites a lot of the tile keys). This makes the git diff between different map changes much smaller. More recently a new way of laying out the map was invented by Remie, called TGM, this helps to further reduce conflicts in the map files.
+
There are two ways of running the tool, each requiring some amount of setup. If you have trouble or need help, ask in [[Community|#coderbus]].
  
This is good for a few reasons
+
== Basic Setup ==
  
1) Maintainers can actually verify the changes you are making are what you say they are by simply viewing the diff (For small changes at least)
+
# '''Install Python 3.6''': If you don't already have Python installed, [https://www.python.org/downloads/ download and install] version 3.6 or later.
 +
# '''Ensure Python is in your PATH''': For Windows users, ensure that you check the "Add Python 3.6 to PATH" option in the installer. - see [https://file.house/DA6H.png here for example]
 +
# '''Install dependencies''': For Windows users, run <code>tools/mapmerge2/requirements-install.bat</code>. Non-Windows or advanced users can manually run <code>python -m pip install tools/mapmerge2/requirements.txt</code>.
  
2) The less changes there are in any given map diff, the easier it is for git to merge it without running into unexpected conflicts, which in most cases you have to either manually resolve or require you to remap your changes
+
== Use as a Git Commit Hook (preferred) ==
  
 +
This method requires slightly more setup, and requires you to be using git rather than just downloading the source, but requires no manual intervention after setup. For this reason, it is the recommended method.
  
However - to do all this is going to require you to put some elbow grease into understanding the map merger tool.
+
# '''Install the hook''': Windows users run <code>tools/hooks/install.bat</code>. Other platforms run <code>tools/hooks/install.sh</code>.
  
If you have difficulty using these tools, ask for help in [[Community|#coderbus]]
+
Now, any time you create a commit, the map merger runs automatically and bases your changes on top of the previous version of the map stored in git. The dialog box or console output of the commit will show the map merger's log. You can check the git commit log to review changes, or run <code>tools/mapmerge2/precommit.py</code> manually to review changes before comitting.
  
== Using the tools ==
+
== Manual Use ==
{|
 
|-
 
|'''1. Install Python 3.5 or greater'''
 
|If you don't have Python already installed it can be downloaded from: https://www.python.org/downloads/ - make sure you grab the latest python 3, again, it must be 3.5 or greater
 
|-
 
|'''2. PATH Python'''
 
|This step is mostly applicable to windows users, you must make sure you ask the windows installer to add python to your path.
 
|-
 
|
 
|This image shows the correct setting to ensure is set https://file.house/DA6H.png
 
|-
 
|'''3. Prepare Maps'''
 
|Run "Prepare Maps.bat" in the tools/mapmerge/ directory.
 
|-
 
|'''4. Edit your map'''
 
|Make your changes to the map here. Remember to save them!
 
|-
 
|'''5. Clean map'''
 
|Run "Run Map Merge - TGM.bat" in the tools/mapmerge/ directory.
 
|-
 
|'''7. Check differences'''
 
|Use your git application of choice to look at the differences between revisions of your code and commit the result.
 
|-
 
|'''8. Commit'''
 
|Your map is now ready to be committed, rejoice and wait for conflicts.
 
|}
 
  
[[Category:Guides]] [[Category:Game Resources]]
+
This is the older method, and is simpler but requires careful manual use each time you want to make changes to the map. Each time you want to edit a map, follow these steps:
{{Contribution guides}}
+
 
 +
# '''Prepare maps''': Run <code>tools/mapmerge2/Prepare Maps.bat</code> to save a backup of all maps in their current state.
 +
# '''Make your changes''': Don't forget to save.
 +
# '''Exit DreamMaker''': Optional, but ensures that you don't accidentally undo the map merger's work.
 +
# '''Run the map merger''': Run <code>tools/mapmerge2/mapmerge.bat</code> and select the map you edited to merge.
 +
 
 +
== Gotchas ==
 +
 
 +
Leaving the map open in DreamMaker or reviewing it after running the map merger makes it possible to accidentally save and overwrite the merged map with an unmerged map. Close DreamMaker entirely before running the map merger or be extra-careful not to overwrite the changes the map merger made.

Latest revision as of 02:07, 19 January 2019

/tg/station uses a tool called the Map Merger to minimize differences between versions of maps and lay them out in a format known as TGM, developed by Remie. This makes changes easier for maintainers to review and less likely to conflict with changes made by others.

There are two ways of running the tool, each requiring some amount of setup. If you have trouble or need help, ask in #coderbus.

Basic Setup[edit | edit source]

  1. Install Python 3.6: If you don't already have Python installed, download and install version 3.6 or later.
  2. Ensure Python is in your PATH: For Windows users, ensure that you check the "Add Python 3.6 to PATH" option in the installer. - see here for example
  3. Install dependencies: For Windows users, run tools/mapmerge2/requirements-install.bat. Non-Windows or advanced users can manually run python -m pip install tools/mapmerge2/requirements.txt.

Use as a Git Commit Hook (preferred)[edit | edit source]

This method requires slightly more setup, and requires you to be using git rather than just downloading the source, but requires no manual intervention after setup. For this reason, it is the recommended method.

  1. Install the hook: Windows users run tools/hooks/install.bat. Other platforms run tools/hooks/install.sh.

Now, any time you create a commit, the map merger runs automatically and bases your changes on top of the previous version of the map stored in git. The dialog box or console output of the commit will show the map merger's log. You can check the git commit log to review changes, or run tools/mapmerge2/precommit.py manually to review changes before comitting.

Manual Use[edit | edit source]

This is the older method, and is simpler but requires careful manual use each time you want to make changes to the map. Each time you want to edit a map, follow these steps:

  1. Prepare maps: Run tools/mapmerge2/Prepare Maps.bat to save a backup of all maps in their current state.
  2. Make your changes: Don't forget to save.
  3. Exit DreamMaker: Optional, but ensures that you don't accidentally undo the map merger's work.
  4. Run the map merger: Run tools/mapmerge2/mapmerge.bat and select the map you edited to merge.

Gotchas[edit | edit source]

Leaving the map open in DreamMaker or reviewing it after running the map merger makes it possible to accidentally save and overwrite the merged map with an unmerged map. Close DreamMaker entirely before running the map merger or be extra-careful not to overwrite the changes the map merger made.