Files
itgmania212121/stepmania/src/ScreenNetRoom.h
T
Josh Allen c072b260f6 Add: Ability to tell server to create a room
Transitioning from quads to sprites
2004-12-03 01:10:09 +00:00

87 lines
2.7 KiB
C++

/* ScreenNetSelectMusic - A method for Online/Net song selection */
#ifndef SCREENNETROOM_H
#define SCREENNETROOM_H
#include "ScreenWithMenuElements.h"
#include "ScreenNetSelectBase.h"
#include <vector>
class ScreenNetRoom : public ScreenNetSelectBase
{
public:
ScreenNetRoom( const CString& sName );
virtual void Input( const DeviceInput& DeviceI, const InputEventType type,
const GameInput& GameI, const MenuInput& MenuI,
const StyleInput& StyleI );
virtual void HandleScreenMessage( const ScreenMessage SM );
protected:
virtual void MenuStart( PlayerNumber pn );
virtual void MenuUp( PlayerNumber pn, const InputEventType type );
virtual void MenuDown( PlayerNumber pn, const InputEventType type );
virtual void MenuBack( PlayerNumber pn );
virtual void TweenOffScreen( );
virtual void Update( float fDeltaTime );
private:
void UpdateRoomsList();
void MenuLeft( PlayerNumber pn, const InputEventType type );
void MenuRight( PlayerNumber pn, const InputEventType type );
void CreateNewRoom( const CString& rName, const CString& rDesc );
enum NetSelectModes
{
SelectRooms = 0,
SelectMakeRoom,
SelectModes,
};
NetSelectModes m_SelectMode;
RageSound m_soundChangeSel;
BitmapText m_textTitle;
Quad m_rectTitleBG;
Sprite m_sprRoomsBG;
BitmapText m_textRooms;
Sprite m_sprSelection;
Sprite m_sprCreateRoom;
vector < CString > m_Rooms;
int m_iRoomPlace;
CString m_newRoomName, m_newRoomDesc;
};
#endif
/*
* (c) 2004 Charles Lohr
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, and/or sell copies of the Software, and to permit persons to
* whom the Software is furnished to do so, provided that the above
* copyright notice(s) and this permission notice appear in all copies of
* the Software and that both the above copyright notice(s) and this
* permission notice appear in supporting documentation.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/