| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- /*
- ** Command & Conquer Renegade(tm)
- ** Copyright 2025 Electronic Arts Inc.
- **
- ** This program is free software: you can redistribute it and/or modify
- ** it under the terms of the GNU General Public License as published by
- ** the Free Software Foundation, either version 3 of the License, or
- ** (at your option) any later version.
- **
- ** This program is distributed in the hope that it will be useful,
- ** but WITHOUT ANY WARRANTY; without even the implied warranty of
- ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- ** GNU General Public License for more details.
- **
- ** You should have received a copy of the GNU General Public License
- ** along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /******************************************************************************
- *
- * FILE
- * $Archive: /Commando/Code/WWOnline/WOLLadder.h $
- *
- * DESCRIPTION
- *
- * PROGRAMMER
- * $Author: Denzil_l $
- *
- * VERSION INFO
- * $Revision: 6 $
- * $Modtime: 1/25/02 11:51a $
- *
- ******************************************************************************/
- #ifndef __WOLLADDER_H__
- #define __WOLLADDER_H__
- #pragma warning(disable : 4711)
- #include "RefCounted.h"
- #include "RefPtr.h"
- namespace WOL
- {
- #include <wolapi\wolapi.h>
- }
- namespace WWOnline {
- typedef enum
- {
- LadderType_Individual = (1<<16L),
- LadderType_Clan = (1<<23L),
- LadderType_Team = (1<<24L)
- } LadderType;
- #define LADDERTYPE_MASK (LadderType_Individual | LadderType_Clan | LadderType_Team)
- class LadderData :
- public RefCounted
- {
- public:
- static RefPtr<LadderData> Create(const WOL::Ladder& ladder, long time);
- bool UpdateData(const WOL::Ladder& ladder, long time);
- const char* GetName(void) const
- {return (const char*)mData.login_name;}
- unsigned int GetWins(void) const
- {return mData.wins;}
-
- unsigned int GetLosses(void) const
- {return mData.losses;}
- unsigned int GetPoints(void) const
- {return mData.points;}
- unsigned int GetKills(void) const
- {return mData.kills;}
- unsigned int GetRung(void) const
- {return mData.rung;}
- unsigned int GetReserved1(void) const
- {return mData.reserved1;}
- unsigned int GetReserved2(void) const
- {return mData.reserved2;}
- long GetTimeStamp(void) const
- {return mTimeStamp;}
- WOL::Ladder& GetData()
- {return mData;}
- protected:
- LadderData(const WOL::Ladder& ladder, long time);
- virtual ~LadderData();
- WOL::Ladder mData;
- long mTimeStamp;
- };
- class LadderInfoEvent
- {
- public:
- LadderInfoEvent(const wchar_t* requested, const WOL::Ladder& ladder, long time);
- virtual ~LadderInfoEvent()
- {}
- bool IsRanked(void) const;
- LadderType GetLadderType(void) const;
- const wchar_t* GetRequestedName(void) const
- {return mRequestedName;}
- const char* GetReceivedName(void) const
- {return (const char*)mWOLLadder.login_name;}
- const WOL::Ladder& GetWOLLadder(void) const
- {return mWOLLadder;}
- long GetTimeStamp(void) const
- {return mTimeStamp;}
- protected:
- // Prevent copy and assignment
- LadderInfoEvent(const LadderInfoEvent&);
- const LadderInfoEvent& operator=(const LadderInfoEvent&);
- const wchar_t* mRequestedName;
- const WOL::Ladder& mWOLLadder;
- long mTimeStamp;
- };
- }
- #endif // __WOLLADDER_H__
|