ClientGiftMoneyHandler.cpp

Go to the documentation of this file.
00001 ////////////////////////////////////////////////////////////////////////////////
00002 //    Scorched3D (c) 2000-2009
00003 //
00004 //    This file is part of Scorched3D.
00005 //
00006 //    Scorched3D is free software; you can redistribute it and/or modify
00007 //    it under the terms of the GNU General Public License as published by
00008 //    the Free Software Foundation; either version 2 of the License, or
00009 //    (at your option) any later version.
00010 //
00011 //    Scorched3D is distributed in the hope that it will be useful,
00012 //    but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014 //    GNU General Public License for more details.
00015 //
00016 //    You should have received a copy of the GNU General Public License
00017 //    along with Scorched3D; if not, write to the Free Software
00018 //    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00019 ////////////////////////////////////////////////////////////////////////////////
00020 
00021 #include <client/ScorchedClient.h>
00022 #include <client/ClientGiftMoneyHandler.h>
00023 #include <tank/TankContainer.h>
00024 #include <tank/TankScore.h>
00025 #include <coms/ComsGiftMoneyMessage.h>
00026 #include <dialogs/BuyAccessoryDialog.h>
00027 #include <lang/LangResource.h>
00028 #include <common/ChannelManager.h>
00029 
00030 ClientGiftMoneyHandler *ClientGiftMoneyHandler::instance_ = 0;
00031 
00032 ClientGiftMoneyHandler *ClientGiftMoneyHandler::instance()
00033 {
00034         if (!instance_)
00035         {
00036                 instance_ = new ClientGiftMoneyHandler;
00037         }
00038         return instance_;
00039 }
00040 
00041 ClientGiftMoneyHandler::ClientGiftMoneyHandler()
00042 {
00043         ScorchedClient::instance()->getComsMessageHandler().addHandler(
00044                 "ComsGiftMoneyMessage",
00045                 this);
00046 }
00047 
00048 ClientGiftMoneyHandler::~ClientGiftMoneyHandler()
00049 {
00050 }
00051 
00052 bool ClientGiftMoneyHandler::processMessage(
00053         NetMessage &netMessage,
00054         const char *messageType,
00055         NetBufferReader &reader)
00056 {
00057         ComsGiftMoneyMessage message;
00058         if (!message.readMessage(reader)) return false;
00059 
00060         Tank *toTank = ScorchedClient::instance()->getTankContainer().
00061                 getTankById(message.getToPlayerId());
00062         Tank *fromTank = ScorchedClient::instance()->getTankContainer().
00063                 getTankById(message.getFromPlayerId());
00064         if (!toTank || !fromTank) return true;
00065 
00066         toTank->getScore().setMoney(toTank->getScore().getMoney() + 
00067                 message.getMoney());
00068         fromTank->getScore().setMoney(fromTank->getScore().getMoney() - 
00069                 message.getMoney());
00070 
00071         BuyAccessoryDialog::instance()->playerRefreshKeepPos();
00072 
00073         ChannelText text("combat", 
00074                 LANG_RESOURCE_3(
00075                         "TANK_GIFT_MESSAGE", 
00076                         "[p:{0}] gifts ${1} to [p:{2}]", 
00077                         fromTank->getTargetName(), 
00078                         message.getMoney(), 
00079                         toTank->getTargetName()));
00080         ChannelManager::showText(ScorchedClient::instance()->getContext(), text);
00081 
00082         return true;
00083 }
00084 

Generated on Mon Feb 16 15:14:36 2009 for Scorched3D by  doxygen 1.5.3