SuperTuxKart
Loading...
Searching...
No Matches
online_screen.hpp
1// SuperTuxKart - a fun racing game with go-kart
2// Copyright (C) 2009-2015 Marianne Gagnon
3//
4// This program is free software; you can redistribute it and/or
5// modify it under the terms of the GNU General Public License
6// as published by the Free Software Foundation; either version 3
7// of the License, or (at your option) any later version.
8//
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with this program; if not, write to the Free Software
16// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18#ifndef HEADER_ONLINE_SCREEN_HPP
19#define HEADER_ONLINE_SCREEN_HPP
20
21#include "guiengine/screen.hpp"
22
23#include <memory>
24
25class Server;
26class SocketAddress;
27
28namespace GUIEngine { class CheckBoxWidget; class ListWidget;
29 class ButtonWidget; class IconButtonWidget; }
30
35class OnlineScreen : public GUIEngine::Screen, public GUIEngine::ScreenSingleton<OnlineScreen>
36{
37private:
39
40 core::stringw m_online_string;
41
42 core::stringw m_login_string;
43
46
49
50 GUIEngine::CheckBoxWidget* m_enable_splitscreen;
51
52 std::shared_ptr<Server> m_entered_server;
53
55 core::stringw m_entered_server_name;
56
58
59public:
60
61 virtual void onUpdate(float delta) OVERRIDE;
62
64 virtual void loadedFromFile() OVERRIDE;
65
67 virtual void beforeAddingWidget() OVERRIDE;
68
70 virtual void eventCallback(GUIEngine::Widget* widget, const std::string& name,
71 const int playerID) OVERRIDE;
72
74 virtual void init() OVERRIDE;
75
77 virtual bool onEscapePressed() OVERRIDE;
78
79 void setEnteredServerName(const core::stringw& name)
80 { m_entered_server_name = name; }
81};
82
83#endif
A text button widget.
Definition: button_widget.hpp:41
A checkbox widget.
Definition: check_box_widget.hpp:34
A button widget with an icon and optionnaly a label beneath.
Definition: icon_button_widget.hpp:44
Declares a class to be a singleton.
Definition: screen.hpp:59
Represents a single GUI screen.
Definition: screen.hpp:97
Handles the networking main menu.
Definition: online_screen.hpp:36
GUIEngine::IconButtonWidget * m_online
Keep the widget to avoid looking it up every frame.
Definition: online_screen.hpp:48
GUIEngine::ButtonWidget * m_user_id
Keep the widget to to the user name.
Definition: online_screen.hpp:45
virtual void onUpdate(float delta) OVERRIDE
optional callback you can override to be notified at every frame.
Definition: online_screen.cpp:108
virtual bool onEscapePressed() OVERRIDE
implement callback from parent class GUIEngine::Screen
Definition: online_screen.cpp:239
virtual void init() OVERRIDE
implement callback from parent class GUIEngine::Screen
Definition: online_screen.cpp:82
virtual void loadedFromFile() OVERRIDE
implement callback from parent class GUIEngine::Screen
Definition: online_screen.cpp:67
virtual void beforeAddingWidget() OVERRIDE
implement callback from parent class GUIEngine::Screen
Definition: online_screen.cpp:76
core::stringw m_entered_server_name
Save the previous successfully connected server name.
Definition: online_screen.hpp:55
virtual void eventCallback(GUIEngine::Widget *widget, const std::string &name, const int playerID) OVERRIDE
implement callback from parent class GUIEngine::Screen
Definition: online_screen.cpp:149
Definition: server.hpp:44
Describes a IPv4 or IPv6 address in sockaddr_in(6) format, suitable in using with sendto.
Definition: socket_address.hpp:47
Contains all GUI engine related classes and functions.
Definition: abstract_state_manager.hpp:33