Android Open Source - L5RHelper Roll






From Project

Back to project page L5RHelper.

License

The source code is released under:

Copyright (c) 2010 Robert Uhl Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Sof...

If you think the Android project L5RHelper 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.uhl.calc;
/*from w  w w. j a va  2 s  .  co  m*/

public class Roll {

  private int rolled;
  private int kept;
  private int luck;
  private int gp;
  private int statMod;

  public Roll(int rolled, int kept, int luck, int gp){
    this(rolled, kept, 0, luck, gp);
  }
  
  public Roll(int rolled, int kept){
    this(rolled, kept, 0, 0, 0);
  }
  
  public Roll(int rolled, int kept, int statMod, int luck, int gp) {
    setRolled(rolled);
    setKept(kept);
    setLuck(luck);
    setGp(gp);
    setStatMod(statMod);
  }

  public void setGp(int gp) {
    this.gp = gp;
    
  }
  
  public int getGp(){
    return gp;
  }  

  public void setLuck(int luck) {
    this.luck = luck;
  }
  
  public int getLuck(){
    return luck;
  }

  public void setRolled(int rolled) {
    this.rolled = rolled;
  }

  public int getRolled() {
    return Math.min(rolled,10);
  }

  public void setKept(int kept) {
    this.kept = kept;
  }

  public int getKept() {
    int inflow = Math.max(this.rolled - 10,0);
    int val = this.kept + (inflow)/2;    
    return Math.min(val, 10);
  }
  
  public int getKeptRaw() {
    return this.kept;    
  }

  public void setStatMod(int statMod) {
    this.statMod = statMod;
  }

  public int getStatMod() {
    int inflow = Math.max(this.rolled - 10,0);
    int val = this.kept + (inflow)/2;
    val = Math.max(val-10, 0)*5;    
    return val + this.statMod;
  }
  
  public int getStatModRaw(){
    return this.statMod;
  }
  
  
  public String toString(){
    int mod = this.getStatMod();
    if(mod > 0){    
      return this.getRolled()+"K"+this.getKept()+"+"+this.getStatMod();
    }else if (mod < 0){
      return this.getRolled()+"K"+this.getKept()+this.getStatMod();
    }else{    
      return this.getRolled()+"K"+this.getKept();
    }
  }  
}




Java Source Code List

com.uhl.CasterRollCalculateActivity.java
com.uhl.EditCharacterActivity.java
com.uhl.EditTemplateActivity.java
com.uhl.HomeActivity.java
com.uhl.L5RUtilites.java
com.uhl.LoadProfileView.java
com.uhl.ManageTemplateView.java
com.uhl.MeleeRollCalculateActivity.java
com.uhl.ProfileOverviewActivity.java
com.uhl.calc.Histogram.java
com.uhl.calc.Raises.java
com.uhl.calc.Roll.java
com.uhl.db.DBHelper.java
com.uhl.db.DBServiceLocator.java
com.uhl.db.DefaultViews.java
com.uhl.db.IDBHelper.java
com.uhl.db.Profile.java
com.uhl.db.Record.java
com.uhl.db.Template.java