Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 7, 2011, 3:11:16 PM (13 years ago)
Author:
landauf
Message:

enhanced chat system. chat related code is now separated into network-side code (located in Host, Client, Server) and client-side code (located in ChatManager).
note that there are now two chat related listeners: NetworkChatListener, which is used to send chat from the network to ChatManager, and ChatListener, which is used to send online and offline chat from ChatManager to the actual chat interfaces (ChatOverlay, ChatInputHandler, …).
the "chat" console command now supports a second argument which is the clientID of the receiver. this allows private messages (or gameplay messages directed to only one specific player).

Location:
code/branches/output/src/orxonox/gametypes
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/orxonox/gametypes/Asteroids.cc

    r8822 r8829  
    3030
    3131#include "core/CoreIncludes.h"
    32 #include "network/Host.h"
     32#include "chat/ChatManager.h"
    3333#include "worldentities/pawns/Pawn.h"
    3434
     
    7474
    7575        std::string message("The match has started! Reach the first chekpoint within 15 seconds! But be aware, there may be pirates around...");
    76         Host::Broadcast(message);
     76        ChatManager::message(message);
    7777
    7878    }
     
    8383
    8484        std::string message("The match has ended.");
    85         Host::Broadcast(message);
     85        ChatManager::message(message);
    8686    }
    8787}
  • code/branches/output/src/orxonox/gametypes/Deathmatch.cc

    r8822 r8829  
    3030
    3131#include "core/CoreIncludes.h"
    32 #include "network/Host.h"
     32#include "chat/ChatManager.h"
    3333#include "infos/PlayerInfo.h"
    3434#include "worldentities/pawns/Pawn.h"
     
    4848
    4949        std::string message("The match has started!");
    50         Host::Broadcast(message);
     50        ChatManager::message(message);
    5151    }
    5252
     
    5656
    5757        std::string message("The match has ended.");
    58         Host::Broadcast(message);
     58        ChatManager::message(message);
    5959    }
    6060
     
    6464
    6565        const std::string& message = player->getName() + " entered the game";
    66         Host::Broadcast(message);
     66        ChatManager::message(message);
    6767    }
    6868
     
    7474        {
    7575            const std::string& message = player->getName() + " left the game";
    76             Host::Broadcast(message);
     76            ChatManager::message(message);
    7777        }
    7878
     
    8787        {
    8888            const std::string& message = player->getOldName() + " changed name to " + player->getName();
    89             Host::Broadcast(message);
     89            ChatManager::message(message);
    9090        }
    9191
     
    108108                message = victim->getPlayer()->getName() + " died";
    109109
    110             Host::Broadcast(message);
     110            ChatManager::message(message);
    111111        }
    112112
     
    121121        {
    122122            const std::string& message = player->getName() + " scores!";
    123             Host::Broadcast(message);
     123            ChatManager::message(message);
    124124        }
    125125    }
  • code/branches/output/src/orxonox/gametypes/Dynamicmatch.cc

    r8822 r8829  
    4949#include "core/CoreIncludes.h"
    5050#include "core/command/Executor.h"
    51 #include "network/Host.h"
     51#include "chat/ChatManager.h"
    5252#include "infos/PlayerInfo.h"
    5353#include "worldentities/pawns/Pawn.h"
     
    343343        Gametype::playerEntered(player);
    344344        const std::string& message = player->getName() + " entered the game";
    345         Host::Broadcast(message);
     345        ChatManager::message(message);
    346346    }
    347347
     
    358358            }
    359359            const std::string& message = player->getName() + " left the game";
    360             Host::Broadcast(message);
     360            ChatManager::message(message);
    361361            //remove player from map
    362362            playerParty_.erase (player);
     
    615615        {
    616616            const std::string& message = player->getOldName() + " changed name to " + player->getName();
    617             Host::Broadcast(message);
     617            ChatManager::message(message);
    618618        }
    619619
     
    627627        {
    628628            std::string message("Dynamicmatch started!");
    629             Host::Broadcast(message);
     629            ChatManager::message(message);
    630630        }
    631631        else if(tutorial) // Announce selectionphase
     
    643643    {
    644644        std::string message("Earn points:\n\n\n\tIf you're red: Chase the blue player!\n\n\tIf you're blue shoot at a red player or hide.\n\n\tIf you're green: You've got the licence to kill red players!");
    645         Host::Broadcast(message);
     645        ChatManager::message(message);
    646646        callInstructions_.setTimer(10, false, createExecutor(createFunctor(&Dynamicmatch::furtherInstructions, this)));
    647647    }
     
    650650    {
    651651        std::string message("After 3 Minutes the game is over.");
    652         Host::Broadcast(message);
     652        ChatManager::message(message);
    653653    }*/
    654654    void Dynamicmatch::end()
     
    657657
    658658        std::string message("Time out. Press F2 to see the points you scored.");
    659         Host::Broadcast(message);
     659        ChatManager::message(message);
    660660    }
    661661    SpawnPoint* Dynamicmatch::getBestSpawnPoint(PlayerInfo* player) const
  • code/branches/output/src/orxonox/gametypes/LastManStanding.cc

    r8822 r8829  
    3030
    3131#include "core/CoreIncludes.h"
    32 #include "network/Host.h"
     32#include "chat/ChatManager.h"
    3333#include "infos/PlayerInfo.h"
    3434#include "worldentities/pawns/Pawn.h"
     
    105105            this->playersAlive--;
    106106            const std::string& message = victim->getPlayer()->getName() + " has lost all lives";
    107             Host::Broadcast(message);
     107            ChatManager::message(message);
    108108        }
    109109
  • code/branches/output/src/orxonox/gametypes/LastTeamStanding.cc

    r8822 r8829  
    3030
    3131#include "core/CoreIncludes.h"
    32 #include "network/NetworkPrereqs.h"
    33 #include "network/Host.h"
     32#include "chat/ChatManager.h"
    3433#include "infos/PlayerInfo.h"
    3534#include "worldentities/pawns/Pawn.h"
     
    119118                this->teamsAlive--;
    120119            const std::string& message = victim->getPlayer()->getName() + " has lost all lives";
    121             Host::Broadcast(message);
     120            ChatManager::message(message);
    122121        }
    123122        return allow;
  • code/branches/output/src/orxonox/gametypes/UnderAttack.cc

    r8822 r8829  
    3232#include "core/CoreIncludes.h"
    3333#include "core/ConfigValueIncludes.h"
    34 #include "network/Host.h"
     34#include "chat/ChatManager.h"
    3535#include "worldentities/pawns/Destroyer.h"
    3636#include "infos/PlayerInfo.h"
     
    7070        this->end(); //end gametype
    7171        std::string message("Ship destroyed! Team 0 has won!");
    72         Host::Broadcast(message);
     72        ChatManager::message(message);
    7373        this->gameEnded_ = true;
    7474
     
    152152                this->end();
    153153                std::string message("Time is up! Team 1 has won!");
    154                 Host::Broadcast(message);
     154                ChatManager::message(message);
    155155
    156156                for (std::map<PlayerInfo*, int>::iterator it = this->teamnumbers_.begin(); it != this->teamnumbers_.end(); ++it)
     
    171171                const std::string& message = multi_cast<std::string>(timesequence_) + " seconds left!";
    172172/*
    173                 Host::Broadcast(message);
     173                ChatManager::message(message);
    174174*/
    175175                this->gtinfo_->sendAnnounceMessage(message);
Note: See TracChangeset for help on using the changeset viewer.