Home
last modified time | relevance | path

Searched refs:gameno (Results 1 – 25 of 44) sorted by relevance

12

/dports/games/py-pychess/pychess-1.0.2/lib/pychess/ic/managers/
H A DBoardManager.py552 gameno=int(gameno),
625 gameno = int(gameno)
646 gameno=gameno,
969 game.gameno = gameno
972 game.gameno = gameno
1036 gameno = int(gameno)
1051 gameno=gameno,
1082 gameno=gameno,
1185 gameno = int(gameno)
1241 gameno = int(gameno)
[all …]
H A DICCBoardManager.py116 gameno = int(gameno)
147 gameno = int(gameno)
169 gameno=gameno,
221 gameno = int(gameno)
236 gameno=gameno,
269 gameno = int(gameno)
303 gameno=int(gameno),
319 gameno = int(gameno)
344 gameno = int(gameno)
430 game.gameno = gameno
[all …]
H A DICCChatManager.py61 gameno, name, symbol, kibvalue = data.split()
68 if gameno not in self.observers:
70 self.observers[gameno] = observers
73 self.observers[gameno].add(name)
74 elif symbol == "X" and name in self.observers[gameno]:
75 self.observers[gameno].remove(name)
77 obs_str = " ".join(list(self.observers[gameno]))
78 self.emit('observers_received', gameno, obs_str)
82 gameno, name, rest = data.split(" ", 2)
88 GLib.idle_add(self.emit, "kibitzMessage", name, int(gameno), text)
[all …]
H A DHelperManager.py100 gameno, wrating, wname, brating, bname = parts0.split()
109 gameno, wrating, wname, brating, bname, private, shorttype, rated, min, \
120 gameno=int(gameno),
144 gameno, wname, bname, rated, game_type = match.groups()
151 gameno=int(gameno),
164 gameno, wname, bname, comment, result = match.groups()
189 gameno=int(gameno),
H A DChatManager.py156 gameno = match.group(1)
182 self.emit('observers_received', gameno, obs_str)
187 gameno = match.group(1)
188 self.emit('observers_received', gameno, "")
272 name, rating, gameno, text = match.groups()
274 GLib.idle_add(self.emit, "kibitzMessage", name, int(gameno), text)
277 name, rating, gameno, text = match.groups()
279 GLib.idle_add(self.emit, "whisperMessage", name, int(gameno), text)
389 def tellGame(self, gameno, message): argument
391 self.connection.client.run_command("xkibitz %s %s" % (gameno, message))
H A DICCHelperManager.py56 gameno = parts[index]
104 gameno=int(gameno),
/dports/games/freedoko/FreeDoko_0.7.19/src/ui/gtkmm/
H A Dgame_overview.cpp98 auto const gameno = this->gameno_; in init() local
100 this->set_gameno(gameno); in init()
106 PartyPoints::GameOverview::gameno() const in gameno() function in UI_GTKMM_NS::PartyPoints::GameOverview
118 PartyPoints::GameOverview::set_gameno(unsigned const gameno) in set_gameno() argument
120 if (this->gameno() == gameno) in set_gameno()
123 this->gameno_ = gameno; in set_gameno()
128 if (this->gameno() == UINT_MAX) { in set_gameno()
133 DEBUG_ASSERTION((this->gameno() <= ::party->gameno()), in set_gameno()
135 " gameno = " << this->gameno() in set_gameno()
139 this->game_summary->set_gameno(this->gameno()); in set_gameno()
[all …]
H A Dparty_points.cpp79 this->add(this->gameno); in PartyPointsModel()
596 this->add_row(gameno); in add_game()
597 this->set_points(gameno); in add_game()
626 if (gameno >= party.gameno() in set_points()
657 row[this->party_points_model.gameno] = gameno; in set_points()
741 = gameno; in add_future_bock_multipliers()
767 >= gameno) { in add_row()
1014 auto const gameno = row[this->party_points_model.gameno]; in row_selection_changed() local
1017 << " (" << this->game_rows[gameno][this->party_points_model.gameno] << ")" in row_selection_changed()
1129 auto const gameno = row[this->party_points_model.gameno]; in update() local
[all …]
H A Dgame_summary.cpp187 if (this->gameno != UINT_MAX) in init()
198 GameSummary::set_gameno(unsigned const gameno) in set_gameno() argument
200 this->gameno = gameno; in set_gameno()
201 if (this->gameno == UINT_MAX) in set_gameno()
204 this->game_summary = &this->ui->party().game_summary(this->gameno); in set_gameno()
215 this->gameno = UINT_MAX; in set_game_summary()
253 this->gamenumber->set_label(_("Game: %u", this->gameno + 1)); in update()
254 if (this->gameno == UINT_MAX) in update()
325 = (this->gameno == UINT_MAX in update()
327 : party.pointsum_till_game(this->gameno, this->game_summary->party_player(p))); in update()
H A Dparty_points.h76 Gtk::TreeModelColumn<unsigned> gameno; member
122 void add_game(unsigned gameno, bool update = true);
124 void set_points(unsigned gameno);
137 void add_row(unsigned gameno);
H A Dgame_overview.h51 unsigned gameno() const;
53 void set_gameno(unsigned gameno);
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/Savers/
H A DChessFile.py36 def get_id(self, gameno): argument
37 return gameno
51 def get_player_names(self, gameno): argument
56 def get_elo(self, gameno): argument
61 def get_date(self, gameno): argument
67 def get_site(self, gameno): argument
72 def get_event(self, gameno): argument
78 def get_round(self, gameno): argument
85 def get_result(self, gameno): argument
91 def get_variant(self, gameno): argument
[all …]
/dports/games/freedoko/FreeDoko_0.7.19/src/party/
H A Dparty.cpp541 if (s == gameno) { in starts_new_round()
544 else if (s > gameno) { in starts_new_round()
586 if (gameno == 0) in round_of_game()
589 if (gameno == this->gameno()) { in round_of_game()
592 if (gameno < max(this->round_startgame_.back(), this->gameno())) { in round_of_game()
780 return (this->gameno() in round_startgame()
790 return (this->gameno() in round_startgame()
915 if ( (gameno < this->gameno()) in pointsum_till_game()
1562 unsigned gameno = 0; in read() local
1591 gameno += 1; in read()
[all …]
H A Dparty.h100 unsigned gameno() const noexcept;
110 bool starts_new_round(unsigned gameno) const noexcept;
111 unsigned round_of_game(unsigned gameno) const noexcept;
116 GameSummary const& game_summary(unsigned const gameno) const;
122 unsigned bock_multiplier(unsigned gameno) const noexcept;
126 int pointsum_till_game(unsigned gameno) const;
131 int pointsum_till_game(unsigned gameno, unsigned playerno) const;
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/ic/
H A DICGameModel.py133 def onGameUndoing(self, bm, gameno, ply): argument
134 if gameno == self.ficsgame.gameno:
139 if gameno != self.ficsgame.gameno or len(self.players) != 2 or self.disconnected:
186 if gameno != self.ficsgame.gameno or len(self.players) < 2 or self.disconnected:
244 if gameno != self.ficsgame.gameno:
250 def onMadeExamined(self, bm, gameno): argument
253 def onMadeUnExamined(self, bm, gameno): argument
277 def onGamePaused(self, bm, gameno, paused): argument
304 if gameno != self.ficsgame.gameno:
310 if gameno != self.ficsgame.gameno:
[all …]
H A DFICSObjects.py840 gameno=None, argument
852 assert gameno is None or isinstance(gameno, int), gameno
860 self.gameno = gameno
883 if self.gameno is not None:
964 gameno=None): argument
980 gameno=gameno)
1027 gameno=None, argument
1042 gameno=gameno)
1076 gameno=None, argument
1092 gameno=gameno)
[all …]
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/Players/
H A DICPlayer.py19 gameno, argument
29 self.gameno = gameno
68 self.gameno, self.name, offer))
83 self.gameno=%s self.name=%s %s" % (self.gameno, self.name, offer))
147 gameno, ply, curcol, lastmove, fen, wname, bname, wms, bms = item
148 log.debug("ICPlayer.makeMove got: %s %s %s %s" % (gameno, ply, curcol, lastmove))
149 self.gamemodel.update_board(gameno, ply, curcol, lastmove, fen, wname, bname, wms, bms)
H A DPyChessFICS.py318 self.gameno = ficsgame.gameno
325 (ficsgame.wplayer.name, ficsgame.bplayer.name, ficsgame.gameno))
364 def __onBoardUpdate(self, boardManager, gameno, ply, curcol, lastmove, fen, argument
367 gameno)])
369 if self.gameno != gameno:
/dports/math/R-cran-Zelig/Zelig/man/
H A Dhomerun.Rd11 …A data frame containing 5 variables ("gameno", "month", "homeruns", "playerstatus", "player") and …
13 \item{\code{gameno}}{an integer variable denoting the game number}
/dports/emulators/mess/mame-mame0226/src/mame/drivers/
H A Dmegatech.cpp170 void switch_cart(int gameno);
423 void mtech_state::switch_cart(int gameno) in switch_cart() argument
425 logerror("select game %d\n", gameno + 1); in switch_cart()
437 if (m_cart_reg[gameno]) in switch_cart()
439 memcpy(m_region_maincpu->base(), m_cart_reg[gameno]->base(), 0x400000); in switch_cart()
441 if (!m_cart_is_genesis[gameno]) in switch_cart()
753 osd_printf_debug("cart%d is genesis\n", gameno + 1); in load_cart()
754 m_cart_is_genesis[gameno] = 1; in load_cart()
758 osd_printf_debug("cart%d is sms\n", gameno + 1); in load_cart()
759 m_cart_is_genesis[gameno] = 0; in load_cart()
[all …]
/dports/emulators/mame/mame-mame0226/src/mame/drivers/
H A Dmegatech.cpp170 void switch_cart(int gameno);
423 void mtech_state::switch_cart(int gameno) in switch_cart() argument
425 logerror("select game %d\n", gameno + 1); in switch_cart()
437 if (m_cart_reg[gameno]) in switch_cart()
439 memcpy(m_region_maincpu->base(), m_cart_reg[gameno]->base(), 0x400000); in switch_cart()
441 if (!m_cart_is_genesis[gameno]) in switch_cart()
753 osd_printf_debug("cart%d is genesis\n", gameno + 1); in load_cart()
754 m_cart_is_genesis[gameno] = 1; in load_cart()
758 osd_printf_debug("cart%d is sms\n", gameno + 1); in load_cart()
759 m_cart_is_genesis[gameno] = 0; in load_cart()
[all …]
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/perspectives/games/
H A DchatPanel.py70 allob = 'allob ' + str(gamemodel.ficsgame.gameno)
86 allob = 'allob ' + str(icgamemodel.ficsgame.gameno)
/dports/games/colorcode/ColorCode-0.8.5/
H A Dccgame.cpp80 CCGame::CCGame(const QString &unm, const uint t, const int sc, const uint gameno, const int gcnt, c… in CCGame() argument
86 mGameNo = gameno; in CCGame()
H A Dgametablesdialog.cpp398 uint gameno = ui->mGameNoLe->text().toUInt(); in PlayInputSlot() local
399 if (gameno > 0) in PlayInputSlot()
401 const int* props = ColorCode::INSTANCE->GetCCSolver()->GetGameByNo(gameno); in PlayInputSlot()
402 …CCGame* g = new CCGame("", 0, 0, gameno, 0, 0, 0, ColorCode::MODE_HVM, props[1], props[2], props[3… in PlayInputSlot()
/dports/games/freedoko/FreeDoko_0.7.19/src/os/
H A Dparty_points.cpp72 *this->ostr << setw(5) << party.gameno() << ": "; in game_finish()

12