Android Open Source - numbers-game Level Factory






From Project

Back to project page numbers-game.

License

The source code is released under:

GNU General Public License

If you think the Android project numbers-game 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 com.ngame.factories;
/*ww w . ja  v a2 s.c om*/
import com.ngame.models.Level;
import com.ngame.utils.EndOfLevelException;


public abstract class LevelFactory {
  
  public static final String WINNER_SALUTE = "You have reached the end of the game... Congratulations!";
  public static final String SOLVED_LEVEL_SALUTE = "Level Solved!!! Congratulations on solving the level using minimum number of transformations";
  public static final String NO_MORE_LEVES_SALUTE = "You have reached level mastery... Try your skills at \"Time Battle\" mode !";
  
  public abstract Level getLevel(int i) throws EndOfLevelException;

}




Java Source Code List

com.ngame.activities.AboutActivity.java
com.ngame.activities.ClassicModeActivity.java
com.ngame.activities.StartUpActivity.java
com.ngame.activities.TimeBattleModeActivity.java
com.ngame.factories.Level1Factory.java
com.ngame.factories.Level2Factory.java
com.ngame.factories.Level3Factory.java
com.ngame.factories.Level4Factory.java
com.ngame.factories.Level5Factory.java
com.ngame.factories.LevelFactory.java
com.ngame.factories.TimerLevelsFactory.java
com.ngame.models.Level.java
com.ngame.utils.EndOfLevelException.java
com.ngame.utils.OnSwipeTouchListener.java