Main Page
From GunGame5 Documentation
(→Getting started with GunGame) |
|||
(15 intermediate revisions not shown) | |||
Line 1: | Line 1: | ||
- | |||
- | |||
Consult the [http://meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software. | Consult the [http://meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software. | ||
Line 6: | Line 4: | ||
* '''[[Installation]]''' | * '''[[Installation]]''' | ||
* '''[[Updating]]''' | * '''[[Updating]]''' | ||
+ | ====If you have a question, check out our '''[[FAQ]]'''.==== | ||
== GunGame Documentation == | == GunGame Documentation == | ||
Line 24: | Line 23: | ||
=== GunGame Addons: === | === GunGame Addons: === | ||
- | * [[Included Addons]] | + | * [[scripts.included|Included Addons]] |
- | * [[Custom Addons]] | + | * [[scripts.custom|Custom Addons]] |
=== Python Scripting For GunGame: === | === Python Scripting For GunGame: === | ||
* [[Coding custom addons]] | * [[Coding custom addons]] | ||
- | |||
- | |||
- | |||
== Python Scripting for GunGame== | == Python Scripting for GunGame== | ||
Line 40: | Line 36: | ||
Now, we use separate [http://docs.python.org/tutorial/modules.html#packages Python Packages] and [http://docs.python.org/tutorial/modules.html Python Modules]</p> | Now, we use separate [http://docs.python.org/tutorial/modules.html#packages Python Packages] and [http://docs.python.org/tutorial/modules.html Python Modules]</p> | ||
+ | |||
+ | |||
+ | ==== MediaWiki==== | ||
+ | * [http://www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list] | ||
+ | * [http://www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ] | ||
+ | * [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list] |
Current revision as of 04:31, 24 May 2012
Consult the User's Guide for information on using the wiki software.
Contents |
Getting started with GunGame
If you have a question, check out our FAQ.
GunGame Documentation
The GunGame Package:
- GunGame Package Overview: View the contents of the entire GunGame package.
GunGame Packages, Modules, Classes, Methods, & Functions:
- GunGame Package Reference: Information about GunGame packages.
- GunGame Module Reference: Information about GunGame modules.
- GunGame Class Reference: Information about GunGame classes.
- GunGame Class Method Reference: Information about GunGame class methods.
- GunGame Function Reference: Information about GunGame functions.
GunGame Addons:
Python Scripting For GunGame:
Python Scripting for GunGame
- Where did "gungamelib" go?
-
GunGame 5.1 takes full advantage of Python Packages which allows us to better organize and structure the code into logical groups. This not only helps the developers find/fix bugs faster due to the fact that we can now see which module is causing the error but enables us to see which packages and modules have been changed separately. GunGame 5.1 now uses "intra-package references" instead of a congested library that contains all gungame-related commands.
-
Originally, when we added changes to gungamelib, we only knew (without delving through several revisions) that "something" had been changed in the core functionality of GunGame. If this caused a bug, it became very hard to track down (especially if the bug did not manifest itself or be report until several revisions down the line).
Now, we use separate Python Packages and Python Modules