Android Open Source - ARGiE Waypoint Game






From Project

Back to project page ARGiE.

License

The source code is released under:

MIT License

If you think the Android project ARGiE listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package headrick.brandon.models;
//from  w  w  w . j  a  v a2  s.co  m
/**
 * The simpliest of game types.  This type of game has quests
 * that are to be done in a sequential order.  They can be as
 * simple as going to location X then going to location Y, or
 * as complex as going to location X to retrieve item A and then
 * go to location Y with item A to get item B.
 * 
 * The means by which items are accepted can be as simple as 
 * arriving at the location or (at the moment) as complicated
 * as answering a question once the user has arrived at that
 * location.
 * @author Brandon Headrick
 */
public class WaypointGame extends BaseGame {
  private String type = "Waypoint";
  private QuestNode quest;
  
}




Java Source Code List

android.UnusedStub.java
headrick.brandon.activities.AboutScreenActivity.java
headrick.brandon.activities.CreateGameActivity.java
headrick.brandon.activities.EditQuestActivity.java
headrick.brandon.activities.GameChooserActivity.java
headrick.brandon.activities.GameOptionsActivity.java
headrick.brandon.activities.RunGameActivity.java
headrick.brandon.activities.SettingsActivity.java
headrick.brandon.activities.SplashActivity.java
headrick.brandon.activities.TitleScreenActivity.java
headrick.brandon.gamedata.Constants.java
headrick.brandon.gamedata.GameSettingsState.java
headrick.brandon.gamedata.GameState.java
headrick.brandon.models.BaseGame.java
headrick.brandon.models.QuestNode.java
headrick.brandon.models.WaypointGame.java
headrick.brandon.utilities.DBReadWrite.java
headrick.brandon.utilities.DBTest.java
headrick.brandon.utilities.DatabaseHandler.java
headrick.brandon.utilities.MapHelper.java