From The Mana World
Line 16: Line 16:
* ''make''
* ''make''
* ''sudo cp login-server char-server map-server /usr/local/bin/''
* ''sudo cp login-server char-server map-server /usr/local/bin/''
* ''cd''
* ''git config --global url.git@gitorious.org:.pushInsteadOf git://gitorious.org''
* ''git config --global url.git@gitorious.org:.pushInsteadOf git://gitorious.org''
* ''cd ~/tmw-ea/eathena-data/client-data''
* ''cd ~/tmw-ea/eathena-data''
* ''git submodule update --init''
* ''make conf''
* ''cd client-data''
* ''git checkout master''
* ''git checkout master''
* Close terminal.
* Open ~/tmw-ea/eathena-data/world/conf folder.
* Open '''char_local.conf.example''' and save it at the same place under '''char_local.conf'''.
* Open ~/tmw-ea/eathena-data/login/conf folder.
* Open '''login_local.conf.example''' and save it at the same place under '''login_local.conf'''.
* Open ~/tmw-ea/eathena-data/world/map/conf folder.
* Open '''map_local.conf.example''' and save it at the same place under '''map_local.conf'''.
* Open '''help.txt.example''' and save it at the same place under '''help.txt'''.
* Open ~/tmw-ea/eathena-data/login/save folder.
* Open '''account.txt.example''' and save it at the same place under '''account.txt'''.




Line 50: Line 40:
* ''git commit''
* ''git commit''
* ''git push''
* ''git push''
* ''cd ../eathena-data''
* ''cd ..''
* ''make maps'' (if you changed a map)
* ''make maps'' (if you changed a map)
* ''git status''
* ''git status''
* ''git add [modified files]''
* ''git add [modified files]''
* ''git add client-data'' (if ''git status'' shows ''(new commits)'' )
* ''git commit''
* ''git commit''
* ''git push''
* ''git push''

Revision as of 20:17, 27 June 2011

Set Up

This is a how to help content development for official TMW-eA using Ubuntu 10.04 on amd64 and the Mana client. Other OS and clients may differ. Following this guide, you should be able to get development testing versions of the client data (tmwdata), server-data (eathena-data) and participate in development by using a localhost server. After getting these, you can both test current development and begin development in the direction you find most fitting.

Dependencies: Throughout this tutorial, I do not address dependencies. Bison and Flex are needed, as are other dependencies. This will be inserted with time.

Set Up Own Server

Here are the steps to use when creating a new local testing server.


You can now launch your test server.

  • Open a terminal.
  • cd ~/tmw-ea/eathena-data/
  • ./char-server& ./login-server& ./map-server&
  • Open another terminal.
  • mana --server localhost --port 6901 -u -d ~/tmw-ea/eathena-data/client-data

This should run all three of your servers and the client.


You are now free to do some changes, first close the client and your servers.

  • Make your modifications (e.g. Change a map) and save them.
  • Open a terminal.
  • cd ~/tmw-ea/eathena-data/client-data
  • git status
  • git add [modified files]
  • git commit
  • git push
  • cd ..
  • make maps (if you changed a map)
  • git status
  • git add [modified files]
  • git add client-data (if git status shows (new commits) )
  • git commit
  • git push
  • Close the terminal.

See Also: README.mv.txt - Documentation on using git submodules, like client-data and tmw-music.

Administation

  1. Start the servers.
  2. Open a command line terminal.
  3. cd ~/tmw-ea/eathena-data
  4. ./ladmin
  5. add username M password
  6. gm username 99

Connecting

  1. Open a command line terminal.
  2. Run your client pointing to your client data and your local server. E.g. mana -u -d ~/tmw-ea/tmwdata --server localhost --port 6901

If all goes well, you are now ready to test new content and participate with development.

Making Content

Making Map Content

Java Converter Tool

This has been my experience on running the java Converter tools, which takes map data from client-data and applies it to the server-data. The README addresses dependencies for using this tool. It suggests there are other ways it can work in the README, if this method does work for you.

Edit your map and save it. You can push the client data now. Now, you need to run the converter.

  1. cd ~/tmw-ea/eathena-data/
  2. make maps

After that, commit and push the files that the converter edited.

Making Art Content

Steps

  • Post [CPT] or [WIP] art on the graphics development forum.
  • Work with the Art Director and collaborators on getting the art consistent.
  • When finished, edit topic as [FND].
  • Art Director approves [FND] art and makes/requests xml for it.
  • A1. Once the .png and .xml is ready, the Art Directory can mark as [RC].
  • A2. Any developer, including the Art Director, can add [RC] content through a patch, or push if they have commit access.
  • A3. Once pushed, Art Director marks topic as [GIT].
  • or
  • B. Art Director commits art and xml, then marks as [GIT].
  • Project developer requests database entry reservations from a General Content Team developer.
  • Map entry server data affected: resnametable.txt and .wlk files in the data directory, map content files in the npc directory.
  • Map entry client data affected: .tmx files in the maps directory.
  • Map entry requires the running of the .tmx converter (aka java converter) before commits can be made.
  • Art content server data affected: entry made in the item_db.txt, mob_db.txt or mob_skills_db.txt in the db directory.
  • Art content client data affected: entry added in items.xml, monsters.xml or other identification file, art .png and xml added to appropriate sub-directory in the graphics directory.

Handling General Content Team [REQ]s

  • General Content Team member adds a [REQ] topic to the graphics development forum.
  • General Content Team member adds the [REQ] topic as a hyperlink under "Required Art" on the Art in Development page.
  • Art Director attempts to network with other artists to assign the art to an artist.

Bit Masking

Bit Masking helps us reduce our variable count while offering a dynamic method of script writing that is versatile and flexible to both linear and non-linear script writing.

Bit Masking Test Script

Using the Git Repositories

Making and Submitting Git Patches for Review

Reviewing Git Patches and Pushing

Git Branches, Git Merging

Using the Test Server

Using The Mana World Workshop