If you think the Android project it.alcacoop.fourinaline 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
/**
##################################################################
# FOUR IN A LINE MOBILE #
##################################################################
# #
# Authors: Domenico Martella - Francesco Valente #
# E-mail: info@alcacoop.it #
# Date: 18/10/2013 #
# #
##################################################################
# #
# Copyright (C) 2013 Alca Societa' Cooperativa #
# #
# This file is part of FOUR IN A LINE MOBILE. #
# FOUR IN A LINE MOBILE 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. #
# #
# FOUR IN A LINE MOBILE 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 v3 along with this program. #
# If not, see <http://http://www.gnu.org/licenses/> #
# #
##################################################################
**///www.java2s.compackage it.alcacoop.fourinaline.logic;
publicclass MatchState {
publicstaticint mCount = 0; // contatore mosse effettuate
publicstaticint AILevel = 1; // livello scelto dal giocatore
publicstaticint whoStart = 2; // 1=PLAYER1, 2=AI|REMOTE
publicstaticint nMatchTo = 1;
publicstaticboolean firstGame = true; // numero di game giocati in un match
publicstaticint currentPlayer = 1; // giocatore corrente 1=self 2=opponent
publicstaticint[] anScore = { 0, 0 }; // MATCH SCORES
publicstaticint matchType = 0; // -1=SIMULATOR, 0=SINGLE PLAYER, 1=TWO PLAYERS, 2=GSERVICE
publicstaticint winner = -1; // -1= partina in corso, 0=TIE, 1=HUMAN, 2=AI
}