While the TEC, Advent and Vasari are embroiled in their own struggles for survival a new threat has emerged, intent on spreading it's infectious plague throughout the universe. The sickening ruthlessness in which entire populations are infected or destroyed is alarming to the TEC, Advent and Vasari alike. If the Plague wasn't enough they were immediately followed yet another race calling themselves the Nephilim. The initial encounter with the "Nephilim" held promise they would unite in defeating the Plague. However, Initial attempts at diplomacy have failed as the Nephilim seem single purposed in their pursuit of the Plague.

Report RSS General Mod Development with Eclipse

For those that might be interested in adopting an IDE for their project development, I've highlighted some of the more useful features that would apply to modding in Sins.

Posted by on - Intermediate Client Side Coding

For those that might be interested in adopting an IDE for their project development, I've highlighted some of the more useful features that would apply to modding in Sins.
Links:
www.eclipse.org
www.cvsnt.org (good for a local repository)
code.google.com (good for a shared repository)

Eclipse Project Explorer and Editors:

Projects are easily managed in Eclipse through the Project Expplorer.

Eclipse File Search and Compare Capabilities:

I've loaded the full reference files for Diplomacy/Entrenchment/Vanilla as seperate Eclipse projects. This allows me quite a bit of lattitude when searching for game resources.


  • Workspace - searches across all projects (my mod, diplomacy, entrenchment, vanilla)

  • Selected resources - searches only against the resources or directory selected

  • Enclosing projects - applies when searching for a string highlighted in a file such as a Buff or Abiltiy name.

  • Working set - Can setup working sets against specified project resources such as only GameInfo directories, etc.

* Tip: Want to open a referenced Ability or Buff file? Simply highlight the Buff name inside the quotes and select the menu option Navigate/Open Resource (Alt+n then u). The open resource dialogue appears with the entity pre-selected.

Eclipse Search Results:

Eclipse Compare With Capability:

Eclipse has several nice capabilities when it comes to source file comparisons.


  1. Two different files can be compared directly

  2. Two directories can be be compared directly

  3. Two projects can be compared directly

  4. A resource that is checked into CVS can be compared to the latest branch check in.

  5. A resource that is checked into CVS can be compared to any branch or version checked in.

Eclipse CVS Integration:

Eclipse CVS Synchronization Capabilities:

Allows resources to be reviewed prior to check in.

Eclipse Team/CVS Options. (Applies similarly to SVN on code.coogle.com)


  • Synchronize with Repository - Usually done at the project level to see modified resources

  • Commit... - Commits selected resources to the repository. I usually perform synchronize over an explicit commit.

  • Tag as Version... - Very useful way to create checkpoints during a versions development. Tags, or checkpoints, can be used to compare changes over a given period of time. I personally like to tag the source whenever a stable build during branch development. Tags can also be used to supplement branching if source code merges aren't really your thing.

  • Branch... - Allows a new branch to be created. I prefer to branch from Head and merge back to Head after the branch is deployed.

  • Show History - Shows a all history for the selected resource. History can then be loaded or compared against.

Eclipse Ant/Project Build Capabilities:

Eclipse easily integrates with Ant which is a very nice way to deploy a mod from the project workspace to the mod installation directory. Also note that ant will only copy modified files which allows for quick and easy source file modifications and migration to the mod directory for testing.

I'll be adding more about Ant tasks in following articles.

Post a comment

Your comment will be anonymous unless you join the community. Or sign in with your social account: