Go to the documentation of this file.00001 #include <stdio.h>
00002 #include <windows.h>
00003 #include <vector>
00004
00005 #define LEFT -6.58f
00006 #define TOP 4.0f
00007 #define RIGHT 6.58f
00008 #define DOWN -4.0f
00009 #define TEXT_DISTANCE 0.15f
00010 #define MAX_LINES_IN_SCREEN 55
00011
00012 using namespace std;
00013
00014 class CTextData
00015 {
00016 public:
00017 CTextData()
00018 {
00019 m_fPosX = LEFT;
00020 m_fPosY = TOP;
00021 m_bIsValid = false;
00022 m_bIsStatic = false;
00023 };
00024 ~CTextData() {};
00025
00026 void PrintText(const char *fmt, ...);
00027 inline char* GetText() { return m_cText; }
00028
00029
00030 void SetStaticPosition( float x, float y );
00031 inline bool GetValid() { return m_bIsValid; }
00032 inline void SetInvalid() { m_bIsValid = false; }
00033 inline void DisableStatic() { m_bIsStatic = false; }
00034
00035
00036 private:
00037 char m_cText[256];
00038
00039 bool m_bIsValid;
00040 float m_fPosX;
00041 float m_fPosY;
00042 bool m_bIsStatic;
00043 };
00044
00045
00046
00047 struct TEXT_DATA
00048 {
00049 char m_cText[256];
00050 bool m_bIsValid;
00051 };
00052
00053 class CTextList
00054 {
00055 public :
00056 CTextList()
00057 {
00058 m_nIndex = 1;
00059 m_nRootIndex = 0;
00060 m_bIsFirstLoop = true;
00061 };
00062 ~CTextList() {};
00063
00064 void AddTextList(const char *fmt, ...);
00065 void ClearAllTextList();
00066 char* GetText( int i );
00067
00068 int GetLength() { return MAX_LINES_IN_SCREEN; }
00069 int GetRootIndex() { return m_nRootIndex; }
00070
00071 private:
00072 TEXT_DATA m_textData[MAX_LINES_IN_SCREEN];
00073 int m_nIndex;
00074 int m_nRootIndex;
00075 bool m_bIsFirstLoop;
00076 };
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00112
00113
00114
00115
00118
00119
00120