Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 15, 2011, 9:47:11 PM (13 years ago)
Author:
landauf
Message:

merged usability branch back to trunk

incomplete summary of the changes in this branch:

  • enhanced keyboard navigation in GUIs
  • implemented new graphics menu and changeable window size at runtime
  • added developer mode
  • HUD shows if game is paused, game pauses if ingame menu is opened
  • removed a few obsolete commands and hid some that are more for internal use
  • numpad works in console and gui
  • faster loading of level info
  • enhanced usage of compositors (Shader class)
  • improved camera handling, configurable FOV and aspect ratio
Location:
code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/orxonox/ChatInputHandler.h

    r7163 r8079  
    3030#define _ChatInputHandler_H__
    3131
    32 /* std includes */
    33 #include <deque>
     32#include <OrxonoxPrereqs.h>
     33
    3434#include <string>
    35 #include <fstream>
    36 #include <iostream>
    37 #include <cassert>
    3835#include <CEGUIForwardRefs.h>
     36#include <CEGUIcolour.h>
    3937
    40 /* project includes */
    41 #include <OrxonoxPrereqs.h>
    42 #include <core/BaseObject.h>
    43 #include <core/PathConfig.h>
    44 
    45 #include "core/input/InputBuffer.h"
    46 #include "core/input/InputManager.h"
    47 #include "core/input/InputState.h"
    48 
    49 #include <network/ChatListener.h>
    50 #include <PlayerManager.h>
    51 #include <infos/PlayerInfo.h>
    52 
    53 #include "../libraries/network/Host.h"
    54 #include <util/Singleton.h>
     38#include "util/Singleton.h"
     39#include "network/ChatListener.h"
    5540
    5641namespace orxonox // tolua_export
     
    7055      /* colors for nickname coloring */
    7156      static const int NumberOfColors = 10;
    72       CEGUI::colour *text_colors[ NumberOfColors ];
     57      CEGUI::colour text_colors[ NumberOfColors ];
    7358
    7459      /** input state */
     
    11095      /** constructor */
    11196      ChatInputHandler();
     97      ~ChatInputHandler();
    11298      friend class Singleton<ChatInputHandler>;
    11399
Note: See TracChangeset for help on using the changeset viewer.