Uses of Class
edu.wisc.game.sql.PlayerInfo
-
Packages that use PlayerInfo Package Description edu.wisc.game.pseudo edu.wisc.game.rest The RESTful web APIedu.wisc.game.sql Persistent data structuresedu.wisc.game.web Back-end classes for some auxiliary JSP pages -
-
Uses of PlayerInfo in edu.wisc.game.pseudo
Methods in edu.wisc.game.pseudo that return PlayerInfo Modifier and Type Method Description static PlayerInfoPseudo. mkBot(PlayerInfo p)Creates a bot player.Methods in edu.wisc.game.pseudo with parameters of type PlayerInfo Modifier and Type Method Description static voidPseudo. addTask(PlayerInfo botPlayer, EpisodeInfo epi, int expectedAttemptCnt)static PlayerInfoPseudo. mkBot(PlayerInfo p)Creates a bot player.Constructors in edu.wisc.game.pseudo with parameters of type PlayerInfo Constructor Description Pseudo(PlayerInfo _p, EpisodeInfo _epi, int _expectedAttemptCnt) -
Uses of PlayerInfo in edu.wisc.game.rest
Methods in edu.wisc.game.rest that return PlayerInfo Modifier and Type Method Description static PlayerInfoPlayerResponse. findPlayerInfo(javax.persistence.EntityManager em, String pid)Find the matching record for a player, in the cache of the database.PlayerInfoPlayerResponse. getPlayerInfo()Methods in edu.wisc.game.rest that return types with arguments of type PlayerInfo Modifier and Type Method Description static HashMap<String,PlayerInfo>PlayerResponse. getAllCachedPlayers() -
Uses of PlayerInfo in edu.wisc.game.sql
Methods in edu.wisc.game.sql that return PlayerInfo Modifier and Type Method Description PlayerInfoEpisodeInfo. getPlayer()PlayerInfoPlayerInfo. getPlayerForRole(int mover)The PlayerInfo of the player with the specified role.PlayerInfoPlayerInfo. xgetPartner()Methods in edu.wisc.game.sql with parameters of type PlayerInfo Modifier and Type Method Description static booleanPairing. ensurePairingNow(PlayerInfo p)This is called at the beginning of each episode (on a /newEpisode API call), to ensure that if this is a two-player game, the player is paired, if at all possible.voidPlayerInfo. linkToPartner(PlayerInfo _partner, int myRole)Sets links in both directions, and saves both objectsstatic voidPairing. newPlayerRegistration(PlayerInfo p)Called on /newPlayer (from PlayerResponse()), to check if the new (or restored) player needs to be paired.voidEpisodeInfo. setPlayer(PlayerInfo _player)static intPairing. whoWillStartEpisode(PlayerInfo p, int seriesNo, int epiNo)static intPairing. whoWillStartSeries(PlayerInfo p, int seriesNo)Which player starts the specified series? -
Uses of PlayerInfo in edu.wisc.game.web
Fields in edu.wisc.game.web with type parameters of type PlayerInfo Modifier and Type Field Description protected HashMap<String,Vector<PlayerInfo>>LaunchRulesBase. allPlayersAll PlayerInfo objects associated with this repeat user
-