mirror of
https://github.com/glest/glest-source.git
synced 2025-02-25 20:22:31 +01:00
99 lines
2.6 KiB
C++
99 lines
2.6 KiB
C++
// ==============================================================
|
||
// This file is part of Glest (www.glest.org)
|
||
//
|
||
// Copyright (C) 2001-2005 Marti<74>o Figueroa
|
||
//
|
||
// You can redistribute this code and/or modify it under
|
||
// the terms of the GNU General Public License as published
|
||
// by the Free Software Foundation; either version 2 of the
|
||
// License, or (at your option) any later version
|
||
// ==============================================================
|
||
|
||
#ifndef _GLEST_GAME_MENUSTATECONNECTEDGAME_H_
|
||
#define _GLEST_GAME_MENUSTATECONNECTEDGAME_H_
|
||
|
||
#include "main_menu.h"
|
||
#include "chat_manager.h"
|
||
|
||
namespace Glest{ namespace Game{
|
||
|
||
enum JoinMenu{
|
||
jmSimple,
|
||
jmMasterserver,
|
||
|
||
jmCount
|
||
};
|
||
|
||
|
||
// ===============================
|
||
// class MenuStateConnectedGame
|
||
// ===============================
|
||
|
||
class MenuStateConnectedGame: public MenuState{
|
||
private:
|
||
GraphicButton buttonDisconnect;
|
||
GraphicButton buttonPlayNow;
|
||
GraphicLabel labelControl;
|
||
GraphicLabel labelFaction;
|
||
GraphicLabel labelTeam;
|
||
GraphicLabel labelMap;
|
||
GraphicLabel labelFogOfWar;
|
||
GraphicLabel labelTechTree;
|
||
GraphicLabel labelTileset;
|
||
GraphicLabel labelMapInfo;
|
||
GraphicLabel labelStatus;
|
||
GraphicLabel labelInfo;
|
||
|
||
GraphicListBox listBoxMap;
|
||
GraphicListBox listBoxFogOfWar;
|
||
GraphicListBox listBoxTechTree;
|
||
GraphicListBox listBoxTileset;
|
||
vector<string> mapFiles;
|
||
vector<string> techTreeFiles;
|
||
vector<string> tilesetFiles;
|
||
vector<string> factionFiles;
|
||
GraphicLabel labelPlayers[GameConstants::maxPlayers];
|
||
GraphicListBox listBoxControls[GameConstants::maxPlayers];
|
||
GraphicListBox listBoxFactions[GameConstants::maxPlayers];
|
||
GraphicListBox listBoxTeams[GameConstants::maxPlayers];
|
||
GraphicLabel labelNetStatus[GameConstants::maxPlayers];
|
||
GraphicButton grabSlotButton[GameConstants::maxPlayers];
|
||
MapInfo mapInfo;
|
||
|
||
bool needToSetChangedGameSettings;
|
||
time_t lastSetChangedGameSettings;
|
||
|
||
Console console;
|
||
ChatManager chatManager;
|
||
bool showFullConsole;
|
||
|
||
string currentFactionName;
|
||
string currentMap;
|
||
JoinMenu returnMenuInfo;
|
||
bool settingsReceivedFromServer;
|
||
|
||
|
||
public:
|
||
MenuStateConnectedGame(Program *program, MainMenu *mainMenu, JoinMenu joinMenuInfo=jmSimple, bool openNetworkSlots= false);
|
||
|
||
void mouseClick(int x, int y, MouseButton mouseButton);
|
||
void mouseMove(int x, int y, const MouseState *mouseState);
|
||
void render();
|
||
void update();
|
||
|
||
virtual void keyDown(char key);
|
||
virtual void keyPress(char c);
|
||
virtual void keyUp(char key);
|
||
|
||
private:
|
||
|
||
bool hasNetworkGameSettings();
|
||
void reloadFactions();
|
||
bool loadFactions(const GameSettings *gameSettings,bool errorOnNoFactions);
|
||
void returnToJoinMenu();
|
||
};
|
||
|
||
}}//end namespace
|
||
|
||
#endif
|