Android Open Source - Sottaceto Player






From Project

Back to project page Sottaceto.

License

The source code is released under:

GNU General Public License

If you think the Android project Sottaceto 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

/*
* Copyright(C) 2013 Giovanni Capuano <webmaster@giovannicapuano.net>
*/*from w w  w . ja v  a2  s  .  co  m*/
* This file is part of Sottaceto.
*
* Sottaceto is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Sottaceto is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Sottaceto.  If not, see <http://www.gnu.org/licenses/>.
*/

package net.giovannicapuano.visualnovel.Types;

import net.giovannicapuano.visualnovel.DialogueType;
import net.giovannicapuano.visualnovel.Utils;

public class Player implements DialogueType {  
  public String name; // Name of the variable
  public String mode; // [ input, choice ] if is the player
  public String[] choicesToView; // Choices to see
  public String[] choices; // Choices to store
  public String text; // For text inputs
  
  public Player(String name, String mode, String[] choices, String[] choicesToView) {
    this.name = name;
    this.mode = mode;
    this.choices = choices;
    this.choicesToView = choicesToView;
    this.text = "";
  }
  
  public Player(String name, String mode, String text) {
    this.name = name;
    this.mode = mode;
    this.text = text;
  }

  @Override
  public String toString() {
    if(mode.equals("choice"))
      return "Name: " + name + "\nMode: " + mode + "\nText: " + text + "\nChoices: [ " + Utils.join(choices, ", ") + " ]\nChoices to view: [ " + Utils.join(choicesToView, ", ") + " ]";
    else
      return "Name: " + name + "\nMode: " + mode;
  }
}




Java Source Code List

net.giovannicapuano.visualnovel.AnimationHandler.java
net.giovannicapuano.visualnovel.Credits.java
net.giovannicapuano.visualnovel.DialogueType.java
net.giovannicapuano.visualnovel.Dialogue.java
net.giovannicapuano.visualnovel.Game.java
net.giovannicapuano.visualnovel.MediaPlayerHandler.java
net.giovannicapuano.visualnovel.Memory.java
net.giovannicapuano.visualnovel.Parser.java
net.giovannicapuano.visualnovel.Start.java
net.giovannicapuano.visualnovel.Utils.java
net.giovannicapuano.visualnovel.Types.Character.java
net.giovannicapuano.visualnovel.Types.Event.java
net.giovannicapuano.visualnovel.Types.GoTo.java
net.giovannicapuano.visualnovel.Types.IfStmt.java
net.giovannicapuano.visualnovel.Types.Player.java