mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-12-15 05:28:45 +00:00
91 lines
2.6 KiB
C++
91 lines
2.6 KiB
C++
|
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
|
||
|
// Copyright (C) 2010 Winch Gate Property Limited
|
||
|
//
|
||
|
// This program is free software: you can redistribute it and/or modify
|
||
|
// it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU Affero General Public License
|
||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// includes
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
//nel
|
||
|
#include "nel/misc/command.h"
|
||
|
|
||
|
// game share
|
||
|
#include "game_share/utils.h"
|
||
|
|
||
|
// local
|
||
|
#include "gus_net_types.h"
|
||
|
#include "ce_contest_executor.h"
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Namespaces
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
using namespace std;
|
||
|
using namespace NLMISC;
|
||
|
using namespace GUSNET;
|
||
|
using namespace GUS;
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// CContestExecutor Commands
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
NLMISC_CATEGORISED_COMMAND(ContestExecutor,ceAnswer,"submit an answer","<player_id> <answer>")
|
||
|
{
|
||
|
CNLSmartLogOverride logOverride(&log);
|
||
|
|
||
|
if (args.size()!=2)
|
||
|
return false;
|
||
|
|
||
|
CContestExecutor::getInstance()->submitAnswer(TDataSetRow(), args[0], ucstring(args[1]));
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
NLMISC_CATEGORISED_COMMAND(ContestExecutor,ceChatTexts,"load the file of static chat messages","<file name>")
|
||
|
{
|
||
|
CNLSmartLogOverride logOverride(&log);
|
||
|
|
||
|
if (args.size()!=1)
|
||
|
return false;
|
||
|
|
||
|
if (CContestExecutor::getInstance()->readChatTextFile(args[0]))
|
||
|
{
|
||
|
log.displayNL("Chat text file '%s' loaded", args[0].c_str());
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
log.displayNL("FAILED to load file '%s'", args[0].c_str());
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
NLMISC_CATEGORISED_COMMAND(ContestExecutor,ceDisplayState,"display the state of the contest executor module","")
|
||
|
{
|
||
|
CNLSmartLogOverride logOverride(&log);
|
||
|
|
||
|
if (args.size()!=0)
|
||
|
return false;
|
||
|
|
||
|
CContestExecutor::getInstance()->display();
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|