Source: Difference between revisions

From OHRRPGCE-Wiki
Jump to navigation Jump to search
more info
splitting link for Win 9X and XP instructions
Line 7: Line 7:


*[[Getting Quickbasic]]
*[[Getting Quickbasic]]
*[[Compiling in Windows]]
*[[Compiling in Windows 9x]]
*[[Compiling in Windows XP]]
*[[Compiling in Real DOS]]
*[[Compiling in Real DOS]]
*[[Compiling in DOSBox]]
*[[Compiling in DOSBox]]

Revision as of 17:12, 22 March 2005

This is where source code doumentation will go, as soon as James has time to write some.

Getting the Source

The best way to get the source code is with subversion. If for some reason, you can't install a subversion client on your computer, the next best thing is to download the latest nightly source zip file

Compiling the Source

Submitting Improvements

If you fix bugs, or make improvements, you can submit your fixes to be incorporated into the official version. If you downloaded the source code using subversion, it is easy to make a patch containing your changes. To create a patch, type the command:

 svn diff > patch_file_name.txt

If you have been making changes to many different files, but only want your changes to one specific file to be included in the patch, you can specify the filename:

 svn diff game.bas > patch_file_name.txt

Then log in to bugzilla at http://HamsterRepublic.com/bugzilla/ and create a new bug that describes what your patch does, and attach the patch file to the bug.

Distributing your own version

RPG File Format Internals

The file format that OHRRPGCE games are stored in is a complicated and messy format. Read more about it here.