Android Open Source - Marble-Run Best Score






From Project

Back to project page Marble-Run.

License

The source code is released under:

Apache License

If you think the Android project Marble-Run 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 nttu.edu.hud;
// ww  w. j av a 2  s.c  o m
import nttu.edu.graphics.RenderView;
import nttu.edu.level.Stage;
import nttu.edu.score.Format;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Typeface;

public class BestScore {
  private Paint paint;
  private Paint bgPaint;
  private long score;
  private float textSize;
  private long highScore;
  private long accumulatedScore;
  private Format format;
  
  public BestScore(Format f) {
    textSize = 20f;
    format = f;
    paint = new Paint();
    paint.setTypeface(Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD));
    paint.setColor(Color.WHITE);
    paint.setTextSize(textSize);
    bgPaint = new Paint();
    bgPaint.setTypeface(Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD));
    bgPaint.setColor(Color.BLACK);
    bgPaint.setTextSize(textSize);
  }
  
  public void render(Canvas c) {
    c.drawText("High Stage Score: " + highScore, 10 * RenderView.AspectRatio, textSize * RenderView.AspectRatio, bgPaint);
    c.drawText("High Stage Score: " + highScore, 10 * RenderView.AspectRatio + 1f, textSize * RenderView.AspectRatio + 1f, paint);
    c.drawText("Current Stage Score: " + score, 10 * RenderView.AspectRatio, (textSize * 2) * RenderView.AspectRatio, bgPaint);
    c.drawText("Current Stage Score: " + score, 10 * RenderView.AspectRatio + 1f, (textSize * 2) * RenderView.AspectRatio + 1f, paint);
    c.drawText("Accumulated Score: " + accumulatedScore, 10 * RenderView.AspectRatio, (textSize * 3) * RenderView.AspectRatio, bgPaint);
    c.drawText("Accumulated Score: " + accumulatedScore, 10 * RenderView.AspectRatio + 1f, (textSize * 3) * RenderView.AspectRatio + 1f, paint);
  }
  
  public void tick(Stage s) {
    if (format != null) {
      score = s.getTemporaryScore();
      accumulatedScore = s.getNewAccumulatedScore();
      long temp = Long.valueOf(format.getScore(s.number));
      highScore = temp > score ? temp : score;
    }
  }
}




Java Source Code List

nttu.edu.activities.LevelSelectionActivity.java
nttu.edu.activities.MenuActivity.java
nttu.edu.activities.NewLoadingActivity.java
nttu.edu.activities.PlayActivity.java
nttu.edu.activities.ScoreActivity.java
nttu.edu.activities.SettingsActivity.java
nttu.edu.alt.NewBall.java
nttu.edu.alt.NewCue.java
nttu.edu.alt.NewHole.java
nttu.edu.alt.Obstacle.java
nttu.edu.ball.Ball.java
nttu.edu.ball.Cue.java
nttu.edu.ball.Marble.java
nttu.edu.entity.Border.java
nttu.edu.entity.Bumper.java
nttu.edu.entity.Coin.java
nttu.edu.entity.Connector.java
nttu.edu.entity.CurvePipe.java
nttu.edu.entity.Entity.java
nttu.edu.entity.Funnel.java
nttu.edu.entity.Hole.java
nttu.edu.entity.Path.java
nttu.edu.entity.Pipe.java
nttu.edu.entity.Ramp.java
nttu.edu.entity.ShortFunnel.java
nttu.edu.entity.Tee.java
nttu.edu.entity.Terrain.java
nttu.edu.entity.Void.java
nttu.edu.graphics.Art.java
nttu.edu.graphics.RenderView.java
nttu.edu.handler.Accelero.java
nttu.edu.handler.ImageInfo.java
nttu.edu.handler.Info.java
nttu.edu.handler.Loading.java
nttu.edu.handler.ModPlayer.java
nttu.edu.handler.MusicHandler.java
nttu.edu.hud.BestScore.java
nttu.edu.hud.Compass.java
nttu.edu.hud.GoalCompass.java
nttu.edu.hud.HUDMenu.java
nttu.edu.hud.HUDScore.java
nttu.edu.hud.MarbleCompass.java
nttu.edu.hud.TimeBasedScore.java
nttu.edu.level.HUD.java
nttu.edu.level.Stage.java
nttu.edu.score.Format.java
nttu.edu.score.Score.java
nttu.edu.sound.Sound.java