]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/chat.h
Fix inverted conditions in shader.cpp
[dragonfireclient.git] / src / chat.h
index 5ba4af80002dd5bc3bb13408acea97f7b50ce75f..5d26baf7bbdb247f09197bf52b5d74d5eacb2785 100644 (file)
@@ -1,6 +1,6 @@
 /*
 Minetest
-Copyright (C) 2011 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
@@ -20,10 +20,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #ifndef CHAT_HEADER
 #define CHAT_HEADER
 
-#include "irrlichttypes_bloated.h"
+#include "irrlichttypes.h"
 #include <string>
+#include <vector>
+#include <list>
 
-// Chat console related classes, only used by the client
+// Chat console related classes
 
 struct ChatLine
 {
@@ -55,7 +57,7 @@ struct ChatFormattedFragment
 struct ChatFormattedLine
 {
        // Array of text fragments
-       core::array<ChatFormattedFragment> fragments;
+       std::vector<ChatFormattedFragment> fragments;
        // true if first line of one formatted ChatLine
        bool first;
 };
@@ -110,7 +112,7 @@ class ChatBuffer
        // Appends the formatted lines to the destination array and
        // returns the number of formatted lines.
        u32 formatChatLine(const ChatLine& line, u32 cols,
-                       core::array<ChatFormattedLine>& destination) const;
+                       std::vector<ChatFormattedLine>& destination) const;
 
 protected:
        s32 getTopScrollPos() const;
@@ -120,8 +122,8 @@ class ChatBuffer
        // Scrollback size
        u32 m_scrollback;
        // Array of unformatted chat lines
-       core::array<ChatLine> m_unformatted;
-       
+       std::vector<ChatLine> m_unformatted;
+
        // Number of character columns in console
        u32 m_cols;
        // Number of character rows in console
@@ -129,7 +131,7 @@ class ChatBuffer
        // Scroll position (console's top line index into m_formatted)
        s32 m_scroll;
        // Array of formatted lines
-       core::array<ChatFormattedLine> m_formatted;
+       std::vector<ChatFormattedLine> m_formatted;
        // Empty formatted line, for error returns
        ChatFormattedLine m_empty_formatted_line;
 };
@@ -140,8 +142,9 @@ class ChatPrompt
        ChatPrompt(std::wstring prompt, u32 history_limit);
        ~ChatPrompt();
 
-       // Input character
+       // Input character or string
        void input(wchar_t ch);
+       void input(const std::wstring &str);
 
        // Submit, clear and return current line
        std::wstring submit();
@@ -158,7 +161,7 @@ class ChatPrompt
        void historyNext();
 
        // Nick completion
-       void nickCompletion(const core::list<std::wstring>& names, bool backwards);
+       void nickCompletion(const std::list<std::string>& names, bool backwards);
 
        // Update console size and reformat the visible portion of the prompt
        void reformat(u32 cols);
@@ -209,8 +212,8 @@ class ChatPrompt
        // Currently edited line
        std::wstring m_line;
        // History buffer
-       core::array<std::wstring> m_history;
-       // History index (0 <= m_history_index <= m_history.size()) 
+       std::vector<std::wstring> m_history;
+       // History index (0 <= m_history_index <= m_history.size())
        u32 m_history_index;
        // Maximum number of history entries
        u32 m_history_limit;