Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchy/src/orxonox/overlays/hud/ChatOverlay.cc @ 1953

Last change on this file since 1953 was 1953, checked in by landauf, 16 years ago

added chat overlay

File size: 3.2 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Fabian 'x3n' Landau
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#include "OrxonoxStableHeaders.h"
30#include "ChatOverlay.h"
31
32#include <OgreTextAreaOverlayElement.h>
33
34#include "core/CoreIncludes.h"
35#include "core/ConfigValueIncludes.h"
36#include "core/Executor.h"
37
38#include "network/ClientInformation.h"
39
40#include "GraphicsEngine.h"
41#include "objects/gametypes/Gametype.h"
42#include "objects/infos/PlayerInfo.h"
43#include "overlays/console/InGameConsole.h"
44#include "tools/Timer.h"
45
46#include "util/Convert.h"
47
48namespace orxonox
49{
50    CreateFactory(ChatOverlay);
51
52    ChatOverlay::ChatOverlay()
53    {
54        RegisterObject(ChatOverlay);
55
56        this->displayTime_ = 0;
57
58        this->setConfigValues();
59    }
60
61    ChatOverlay::~ChatOverlay()
62    {
63    }
64
65    void ChatOverlay::setConfigValues()
66    {
67        SetConfigValue(displayTime_, 6.0f);
68    }
69
70    void ChatOverlay::incomingChat(const std::string& message, unsigned int senderID)
71    {
72        std::string text;
73
74        if (senderID != network::CLIENTID_UNKNOWN)
75        {
76            std::string name = "unknown";
77
78            PlayerInfo* player = Gametype::getClient(senderID);
79            if (player)
80                name = player->getName();
81
82            text = name + ": " + message;
83        }
84        else
85        {
86            text = message;
87        }
88
89        this->messages_.push_back(InGameConsole::convert2UTF(text));
90        COUT(0) << "Chat: " << text << std::endl;
91
92        Timer<ChatOverlay>* timer = new Timer<ChatOverlay>;
93        ExecutorMember<ChatOverlay>* executor = createExecutor(createFunctor(&ChatOverlay::dropMessage));
94        executor->setDefaultValues(timer);
95        timer->setTimer(this->displayTime_, false, this, executor);
96
97        this->updateOverlayText();
98    }
99
100    void ChatOverlay::dropMessage(Timer<ChatOverlay>* timer)
101    {
102        this->messages_.pop_front();
103        this->updateOverlayText();
104
105        delete timer;
106    }
107
108    void ChatOverlay::updateOverlayText()
109    {
110        this->text_->setCaption("");
111
112        for (std::list<Ogre::UTFString>::reverse_iterator it = this->messages_.rbegin(); it != this->messages_.rend(); ++it)
113        {
114            this->text_->setCaption(this->text_->getCaption() + "\n" + (*it));
115        }
116    }
117}
Note: See TracBrowser for help on using the repository browser.