annotate GUIFont.cpp @ 2384:f784ffc9a758

sub_407A1C - removed unused variables and commented lines
author zipi
date Sun, 22 Jun 2014 14:57:47 +0100
parents d6887ee81068
children f4af3b203f65
rev   line source
2253
aff7a7b072b7 adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents: 2153
diff changeset
1 #define _CRT_SECURE_NO_WARNINGS
0
Ritor1
parents:
diff changeset
2 #include <string>
2336
d6887ee81068 header file include cleanup
Grumpy7
parents: 2271
diff changeset
3 #include "ErrorHandling.h"
200
1527f66fd81b Buffer overflow in credits window
Nomad
parents: 189
diff changeset
4
180
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
5 #include "LOD.h"
0
Ritor1
parents:
diff changeset
6 #include "GUIFont.h"
Ritor1
parents:
diff changeset
7 #include "GUIWindow.h"
Ritor1
parents:
diff changeset
8 #include "Render.h"
Ritor1
parents:
diff changeset
9
Ritor1
parents:
diff changeset
10 #include "mm7_data.h"
Ritor1
parents:
diff changeset
11
Ritor1
parents:
diff changeset
12
180
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
13 extern LODFile_IconsBitmaps *pIcons_LOD;
0
Ritor1
parents:
diff changeset
14
Ritor1
parents:
diff changeset
15
Ritor1
parents:
diff changeset
16 struct GUIFont *pAutonoteFont;
Ritor1
parents:
diff changeset
17 struct GUIFont *pSpellFont;
Ritor1
parents:
diff changeset
18 struct GUIFont *pFontArrus;
Ritor1
parents:
diff changeset
19 struct GUIFont *pFontLucida;
Ritor1
parents:
diff changeset
20 struct GUIFont *pBook2Font;
Ritor1
parents:
diff changeset
21 struct GUIFont *pBookFont;
Ritor1
parents:
diff changeset
22 struct GUIFont *pFontCreate;
Ritor1
parents:
diff changeset
23 struct GUIFont *pFontCChar;
Ritor1
parents:
diff changeset
24 struct GUIFont *pFontComic;
Ritor1
parents:
diff changeset
25 struct GUIFont *pFontSmallnum;
Ritor1
parents:
diff changeset
26
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
27 char temp_string[2048];
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
28
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1168
diff changeset
29 std::array<char, 10000> pTmpBuf3;
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
30
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
31 void DrawCharToBuff(unsigned short* uXpos,unsigned char* pCharPixels, int uCharWidth, int uCharHeight, unsigned __int16* pFontPalette, __int16 draw_color, int line_width);
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
32
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
33
180
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
34 //----- (0044C448) --------------------------------------------------------
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
35 GUIFont *LoadFont(const char *pFontFile, const char *pFontPalette, ...)
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
36 {
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
37 int pallete_index; // eax@3
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
38 GUIFont *pFont;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
39 unsigned int palletes_count =0;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
40 va_list palettes_ptr;
180
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
41
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
42 pFont = (GUIFont *)pIcons_LOD->LoadRaw(pFontFile, 0);
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
43 va_start(palettes_ptr, pFontFile);
180
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
44
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
45 while (NULL!=(pFontPalette=va_arg(palettes_ptr, const char *)))
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
46 {
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
47 pallete_index =pIcons_LOD->LoadTexture(pFontPalette, TEXTURE_16BIT_PALETTE);
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
48 if (pallete_index == -1)
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1453
diff changeset
49 Error("Unable to open %s", pFontPalette);
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1453
diff changeset
50
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
51 pFont->pFontPalettes[palletes_count] = pIcons_LOD->pTextures[pallete_index].pPalette16;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
52 ++palletes_count;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
53 }
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
54 va_end(palettes_ptr);
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
55 pFont->palletes_count = palletes_count;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
56 return pFont;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
57 }
0
Ritor1
parents:
diff changeset
58
Ritor1
parents:
diff changeset
59 //----- (0044D2FD) --------------------------------------------------------
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
60 void GUIFont::_44D2FD_prolly_draw_credits_entry( GUIFont *pSecondFont, int uFrameX, int uFrameY, unsigned int w, unsigned int h,
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
61 unsigned __int16 firstColor, unsigned __int16 secondColor, const char *pString,
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
62 unsigned __int16 *pPixels, unsigned int uPixelsWidth )
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
63 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
64 char *work_string; // eax@1
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
65 unsigned __int16 *curr_pixel_pos; // esi@1
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
66 GUIFont *currentFont; // edi@4
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
67 signed int start_str_pos; // ecx@4
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
68 signed int line_w; // eax@6
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
69 GUIWindow draw_window; // [sp+Ch] [bp-5Ch]@
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
70 int currentColor; // [sp+74h] [bp+Ch]@4
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
71 int half_frameX; // [sp+80h] [bp+18h]@2
0
Ritor1
parents:
diff changeset
72
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
73 draw_window.uFrameHeight = h;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
74 draw_window.uFrameW = uFrameY + h - 1;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
75 draw_window.uFrameWidth = w;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
76 draw_window.uFrameZ = uFrameX + w - 1;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
77 ui_current_text_color = firstColor;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
78 draw_window.uFrameX = uFrameX;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
79 draw_window.uFrameY = uFrameY;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
80
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
81 work_string = GUIFont::FitTwoFontStringINWindow(pString, this, pSecondFont, &draw_window, 0, 1);
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
82 work_string = strtok(work_string, "\n");
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
83 curr_pixel_pos = &pPixels[uPixelsWidth * uFrameY];
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
84 if ( work_string )
0
Ritor1
parents:
diff changeset
85 {
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
86 half_frameX = uFrameX >> 1;
0
Ritor1
parents:
diff changeset
87 while ( 1 )
Ritor1
parents:
diff changeset
88 {
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
89 currentFont = this;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
90 ui_current_text_color = firstColor;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
91 start_str_pos = 0;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
92 currentColor = firstColor;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
93 if ( *work_string == '_' )
0
Ritor1
parents:
diff changeset
94 {
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
95 currentFont = pSecondFont;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
96 currentColor = secondColor;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
97 ui_current_text_color = secondColor;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
98 start_str_pos = 1;
0
Ritor1
parents:
diff changeset
99 }
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
100 line_w = (signed int)(w - currentFont->GetLineWidth(&work_string[start_str_pos]))/2;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
101 if ( line_w < 0 )
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
102 line_w = 0;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
103 currentFont->DrawTextLineToBuff(currentColor, secondColor, &curr_pixel_pos[line_w + half_frameX], work_string, uPixelsWidth);
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
104 curr_pixel_pos += uPixelsWidth * (currentFont->uFontHeight - 3);
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
105 work_string = strtok(0, "\n");
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
106 if ( !work_string )
0
Ritor1
parents:
diff changeset
107 break;
Ritor1
parents:
diff changeset
108 }
Ritor1
parents:
diff changeset
109 }
Ritor1
parents:
diff changeset
110 }
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
111
0
Ritor1
parents:
diff changeset
112 //----- (0044D1E7) --------------------------------------------------------
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
113 void GUIFont::DrawTextLine( unsigned int uDefaultColor, signed int uX, signed int uY,
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
114 const char *text, int max_len_pix )
0
Ritor1
parents:
diff changeset
115 {
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
116 signed int uX_pos; // edi@3
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
117 unsigned char c; // cl@4
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
118 unsigned __int16 draw_color; // cx@12
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
119 unsigned __int8 *pCharPixels; // eax@12
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
120 char color_code[20]; // [sp+Ch] [bp-1Ch]@16
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
121 int text_length; // [sp+20h] [bp-8h]@2
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
122 int text_color; // [sp+24h] [bp-4h]@1
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
123 int uCharWidth; // [sp+30h] [bp+8h]@9
0
Ritor1
parents:
diff changeset
124
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
125 if ( !text )
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
126 return;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
127 text_color = ui_current_text_color;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
128 text_length = strlen(text);
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
129 uX_pos=uX;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
130 for (int i=0; i<text_length; ++i )
0
Ritor1
parents:
diff changeset
131 {
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
132 c = text[i];
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
133 if ( IsCharValid(c) )
0
Ritor1
parents:
diff changeset
134 {
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
135 switch (c)
0
Ritor1
parents:
diff changeset
136 {
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
137 case '\n': //Line Feed 0A 10:
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
138 return;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
139 break;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
140 case '\f': //Form Feed, page eject 0C 12
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
141 strncpy(color_code, &text[i + 1], 5);
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
142 color_code[5] = 0;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
143 text_color = atoi(color_code);
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
144 ui_current_text_color = text_color;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
145 i += 5;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
146 break;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
147 case '\t': // Horizontal tab 09
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
148 case '\r': //Carriage Return 0D 13
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
149 break;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
150 default:
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
151 uCharWidth = pMetrics[c].uWidth;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
152 if ( uCharWidth )
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
153 {
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
154 if ( i > 0 )
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
155 uX_pos += pMetrics[c].uLeftSpacing;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
156 draw_color = text_color;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
157 pCharPixels = &pFontData[font_pixels_offset[c]];
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
158 if ( !text_color )
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
159 draw_color = -1;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
160 pRenderer->DrawText(uX_pos, uY, pCharPixels, uCharWidth, uFontHeight, pFontPalettes[0], draw_color, 0);
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
161 uX_pos += uCharWidth;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
162 if ( i < text_length )
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
163 uX_pos += pMetrics[c].uRightSpacing;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
164 }
0
Ritor1
parents:
diff changeset
165 }
Ritor1
parents:
diff changeset
166 }
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
167 }
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
168
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
169 }
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
170
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
171 //----- (0040F845) --------------------------------------------------------
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
172 void DrawCharToBuff( unsigned short* uXpos,unsigned char* pCharPixels, int uCharWidth, int uCharHeight,
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
173 unsigned __int16* pFontPalette, __int16 draw_color, int line_width )
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
174 {
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
175 unsigned __int16* draw_buff; // edi@1
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
176 unsigned char* pPixels; // esi@1
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
177 unsigned char char_pxl; // eax@3
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
178
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
179 draw_buff = uXpos;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
180 pPixels = pCharPixels;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
181 for(int i=0; i<uCharHeight; ++i)
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
182 {
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
183 for(int j=0; j<uCharWidth; ++j)
0
Ritor1
parents:
diff changeset
184 {
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
185 char_pxl = *pPixels++;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
186 if ( char_pxl )
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
187 {
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
188 if ( char_pxl == 1 )
2073
38bf1c70fc70 some text rendering fix
Gloval
parents: 2069
diff changeset
189 *draw_buff = pFontPalette[1];
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
190 else
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
191 *draw_buff = draw_color;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
192 }
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
193 ++draw_buff;
0
Ritor1
parents:
diff changeset
194 }
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
195 draw_buff+=line_width-uCharWidth;
0
Ritor1
parents:
diff changeset
196 }
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
197
0
Ritor1
parents:
diff changeset
198 }
Ritor1
parents:
diff changeset
199
Ritor1
parents:
diff changeset
200 //----- (0044D0B5) --------------------------------------------------------
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
201 void GUIFont::DrawTextLineToBuff( int uColor, int a3, unsigned short* uX_buff_pos, const char *text, int line_width )
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
202 {
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
203
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
204 unsigned short* uX_pos; // edi@3
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
205 unsigned char c; // cl@4
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
206 unsigned __int16 draw_color; // cx@12
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
207 unsigned __int8 *pCharPixels; // eax@12
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
208 char color_code[20]; // [sp+Ch] [bp-1Ch]@16
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
209 int text_length; // [sp+20h] [bp-8h]@2
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
210 int text_color; // [sp+24h] [bp-4h]@1
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
211 int uCharWidth; // [sp+30h] [bp+8h]@9
0
Ritor1
parents:
diff changeset
212
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
213 if ( !text )
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
214 return;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
215 text_color = ui_current_text_color;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
216 text_length = strlen(text);
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
217 uX_pos=uX_buff_pos;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
218 for (int i=0; i<text_length; ++i )
0
Ritor1
parents:
diff changeset
219 {
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
220 c = text[i];
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
221 if ( IsCharValid(c) )
0
Ritor1
parents:
diff changeset
222 {
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
223 switch (c)
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
224 {
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
225 case '\n': //Line Feed 0A 10:
0
Ritor1
parents:
diff changeset
226 return;
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
227 break;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
228 case '\f': //Form Feed, page eject 0C 12
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
229 strncpy(color_code, &text[i + 1], 5);
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
230 color_code[5] = 0;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
231 text_color = atoi(color_code);
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
232 ui_current_text_color = text_color;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
233 i += 5;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
234 break;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
235 case '\t': // Horizontal tab 09
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
236 case '_':
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
237 break;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
238 default:
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
239 uCharWidth = pMetrics[c].uWidth;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
240 if ( uCharWidth )
0
Ritor1
parents:
diff changeset
241 {
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
242 if ( i > 0 )
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
243 uX_pos += pMetrics[c].uLeftSpacing;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
244 draw_color = text_color;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
245 pCharPixels = &pFontData[font_pixels_offset[c]];
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
246 if ( !text_color )
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
247 draw_color = -1;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
248 DrawCharToBuff(uX_pos, pCharPixels, uCharWidth, uFontHeight, pFontPalettes[0], draw_color, line_width);
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
249 uX_pos += uCharWidth;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
250 if ( i < text_length )
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
251 uX_pos += pMetrics[c].uRightSpacing;
0
Ritor1
parents:
diff changeset
252 }
Ritor1
parents:
diff changeset
253 }
Ritor1
parents:
diff changeset
254 }
Ritor1
parents:
diff changeset
255 }
Ritor1
parents:
diff changeset
256 }
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
257
0
Ritor1
parents:
diff changeset
258
Ritor1
parents:
diff changeset
259
Ritor1
parents:
diff changeset
260 //----- (0044C933) --------------------------------------------------------
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
261 char * GUIFont::FitTwoFontStringINWindow( const char *pString, GUIFont *pFontMain, GUIFont *pFontSecond, GUIWindow* pWindow, int startPixlOff, int a6 )
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
262 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
263
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
264 GUIFont *currentFont; // esi@3
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
265 unsigned char c;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
266 int uInStrLen;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
267 char digits[4];
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
268 int possible_transition_point;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
269 int string_pixel_Width;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
270 int start_pixel_offset;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
271
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
272 if (!pString)
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
273 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
274 MessageBoxW(nullptr, L"Invalid string passed !", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Font.cpp:445", 0);
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
275 return 0;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
276 }
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
277 currentFont=pFontMain; // esi@3
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
278 uInStrLen = strlen(pString);
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1453
diff changeset
279 Assert(uInStrLen < sizeof(pTmpBuf3));
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1168
diff changeset
280 strcpy(pTmpBuf3.data(), pString);
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
281 if (uInStrLen==0)
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1168
diff changeset
282 return pTmpBuf3.data();
0
Ritor1
parents:
diff changeset
283
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
284 start_pixel_offset=string_pixel_Width=startPixlOff;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
285 possible_transition_point=0;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
286 for(int i=0; i<uInStrLen; ++i)
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
287 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
288 c=pTmpBuf3[i];
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
289 if (pFontMain->IsCharValid(c))
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
290 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
291 switch (c)
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
292 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
293 case '\t': // Horizontal tab 09
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
294 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
295 strncpy(digits, &pTmpBuf3[i+1],3);
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
296 digits[3]=0;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
297 string_pixel_Width = atoi(digits)+startPixlOff;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
298 i+=3;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
299 break;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
300 }
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
301 case '\n': //Line Feed 0A 10
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
302 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
303 string_pixel_Width=start_pixel_offset;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
304 possible_transition_point=i;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
305 currentFont=pFontMain;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
306 break;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
307 }
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
308 case '\f': //Form Feed, page eject 0C 12
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
309 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
310 i+=5;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
311 break;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
312 }
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
313 case '\r': //Carriage Return 0D 13
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
314 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
315 if (!a6)
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
316 return (char*)pString;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
317 break;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
318 }
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
319 case ' ' :
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
320 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
321 string_pixel_Width+=currentFont->pMetrics[c].uWidth;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
322 possible_transition_point=i;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
323 break;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
324 }
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
325 case '_' :
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
326 currentFont=pFontSecond;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
327 break;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
328 default:
200
1527f66fd81b Buffer overflow in credits window
Nomad
parents: 189
diff changeset
329
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
330 if ((string_pixel_Width+currentFont->pMetrics[c].uWidth+ currentFont->pMetrics[c].uLeftSpacing+
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
331 currentFont->pMetrics[c].uRightSpacing)<pWindow->uFrameWidth)
0
Ritor1
parents:
diff changeset
332 {
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
333 if(i>possible_transition_point)
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
334 string_pixel_Width+=currentFont->pMetrics[c].uLeftSpacing;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
335 string_pixel_Width+=currentFont->pMetrics[c].uWidth;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
336 if (i<uInStrLen)
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
337 string_pixel_Width+=currentFont->pMetrics[c].uRightSpacing;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
338 }
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
339 else
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
340 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
341 pTmpBuf3[possible_transition_point]='\n';
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
342
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
343 if ( currentFont== pFontSecond)
0
Ritor1
parents:
diff changeset
344 {
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
345
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
346 for(int k=uInStrLen-1; k>=possible_transition_point+1; --k)
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
347 pTmpBuf3[k] = pTmpBuf3[k-1];
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
348
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
349 ++uInStrLen;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
350 ++possible_transition_point;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
351 pTmpBuf3[possible_transition_point] = '_';
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
352
0
Ritor1
parents:
diff changeset
353 }
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
354 string_pixel_Width=start_pixel_offset;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
355
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
356 for(int j=possible_transition_point;j<i; ++j )
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
357 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
358 c=pTmpBuf3[j];
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
359 if (pFontMain->IsCharValid(c))
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
360 {
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
361 if(j>possible_transition_point)
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
362 string_pixel_Width+=pFontMain->pMetrics[c].uLeftSpacing;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
363 string_pixel_Width+=pFontMain->pMetrics[c].uWidth;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
364 if (j<i)
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
365 string_pixel_Width+=pFontMain->pMetrics[c].uRightSpacing;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
366
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
367 }
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
368 }
0
Ritor1
parents:
diff changeset
369 }
Ritor1
parents:
diff changeset
370 }
Ritor1
parents:
diff changeset
371 }
Ritor1
parents:
diff changeset
372 }
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1168
diff changeset
373 return pTmpBuf3.data();
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
374
0
Ritor1
parents:
diff changeset
375 }
Ritor1
parents:
diff changeset
376
Ritor1
parents:
diff changeset
377
Ritor1
parents:
diff changeset
378 //----- (0044C6C2) --------------------------------------------------------
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
379 char* GUIFont::GetPageTop( const char *pInString, GUIWindow *pWindow, unsigned int uX, int a5 )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
380 {
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
381 int text_height; // edi@1
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
382 char *text_str; // ebx@3
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
383 unsigned char c; // cl@4
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
384 int text_length;
0
Ritor1
parents:
diff changeset
385
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
386 text_height = 0;
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
387
0
Ritor1
parents:
diff changeset
388 if ( !pInString )
Ritor1
parents:
diff changeset
389 return 0;
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
390 text_str = FitTextInAWindow(pInString, this, pWindow, uX, 0);
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
391 text_length = strlen(text_str);
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
392 for ( int i = 0; i < text_length; ++i )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
393 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
394 c = text_str[i];
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
395 if ( IsCharValid(c) )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
396 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
397 switch (c)
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
398 {
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
399 case '\n': //Line Feed 0A 10:
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
400 text_height = text_height + (uFontHeight - 3);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
401 if ( text_height >= (signed int)(a5 * (pWindow->uFrameHeight - (uFontHeight - 3))) )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
402 return &text_str[i];
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
403 break;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
404 case '\f': //Form Feed, page eject 0C 12
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
405 i += 5;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
406 break;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
407 case '\t': // Horizontal tab 09
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
408 case '\r': //Carriage Return 0D 13
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
409 i += 3;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
410 break;
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
411 }
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
412 if ( text_height >= (signed int)(a5 * pWindow->uFrameHeight) )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
413 break;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
414 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
415 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
416 return &text_str[0];
0
Ritor1
parents:
diff changeset
417 }
Ritor1
parents:
diff changeset
418
Ritor1
parents:
diff changeset
419 //----- (0044C62E) --------------------------------------------------------
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
420 int GUIFont::GetStringHeight2( GUIFont *secondFont, const char *text_str, GUIWindow* pWindow, int startX, int a6 )
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
421 {
1166
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
422
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
423 int uAllHeght;
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
424 int uStringLen;
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
425 unsigned char c;
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
426 char *test_string;
0
Ritor1
parents:
diff changeset
427
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
428 if ( !text_str )
0
Ritor1
parents:
diff changeset
429 return 0;
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
430 uAllHeght = uFontHeight - 3;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
431 test_string = FitTwoFontStringINWindow(text_str, this, secondFont, pWindow, startX, 0);
1166
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
432 uStringLen = strlen(test_string);
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
433 for (int i = 0; i < uStringLen; ++i)
0
Ritor1
parents:
diff changeset
434 {
1166
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
435 c = test_string[i];
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
436 if (IsCharValid(c))
0
Ritor1
parents:
diff changeset
437 {
1166
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
438 switch (c)
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
439 {
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
440 case '\n': //Line Feed 0A 10:
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
441 uAllHeght+= uFontHeight - 3;
1166
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
442 break;
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
443 case '\f': //Form Feed, page eject 0C 12
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
444 i += 5;
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
445 break;
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
446 case '\t': // Horizontal tab 09
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
447 case '\r': //Carriage Return 0D 13
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
448 if (a6 != 1)
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
449 i += 3;
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
450 break;
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
451 }
0
Ritor1
parents:
diff changeset
452 }
Ritor1
parents:
diff changeset
453 }
1166
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
454
11cda4934da3 font cleaning
Gloval
parents: 1165
diff changeset
455 return uAllHeght;
0
Ritor1
parents:
diff changeset
456 }
Ritor1
parents:
diff changeset
457
Ritor1
parents:
diff changeset
458 //----- (0044C59D) --------------------------------------------------------
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
459 int GUIFont::CalcTextHeight( const char *pString, struct GUIWindow *pWindow, int uXOffset, int a5 )
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
460 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
461 int uAllHeght;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
462 int uStringLen;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
463 unsigned char c;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
464 char *test_string;
0
Ritor1
parents:
diff changeset
465
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
466 if (!pString)
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
467 return 0;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
468 uAllHeght = uFontHeight - 6;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
469 test_string = FitTextInAWindow(pString, this, pWindow, uXOffset, 0);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
470 uStringLen = strlen(pString);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
471 for (int i = 0; i < uStringLen; ++i)
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
472 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
473 c = test_string[i];
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
474 if (IsCharValid(c))
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
475 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
476 switch (c)
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
477 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
478 case '\n': //Line Feed 0A 10:
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
479 uAllHeght += uFontHeight - 3;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
480 break;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
481 case '\f': //Form Feed, page eject 0C 12
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
482 i += 5;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
483 break;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
484 case '\t': // Horizontal tab 09
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
485 case '\r': //Carriage Return 0D 13
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
486 if (a5 != 1)
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
487 i += 3;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
488 break;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
489 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
490 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
491 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
492 return uAllHeght;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
493 }
0
Ritor1
parents:
diff changeset
494
Ritor1
parents:
diff changeset
495 //----- (0044C51E) --------------------------------------------------------
Ritor1
parents:
diff changeset
496 int GUIFont::GetLineWidth(const char *pString)
180
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
497 {
1160
502b8b2e36b4 font cleaning
Gloval
parents: 688
diff changeset
498 int str_len; // ebp@3
180
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
499 int string_line_width; // esi@3
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
500 unsigned char c;
0
Ritor1
parents:
diff changeset
501
180
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
502 if (!pString)
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
503 return 0;
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
504 str_len = strlen(pString);
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
505 string_line_width = 0;
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
506 for ( int i = 0; i < str_len; ++i )
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
507 {
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
508 c = pString[i];
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
509 if (IsCharValid(c))
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
510 {
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
511 switch (c)
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
512 {
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
513 case '\t':
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
514 case '\n':
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
515 case '\r':
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
516 return string_line_width;
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
517 case '\f':
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
518 i += 5;
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
519 break;
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
520 default:
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
521 if (i > 0)
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
522 string_line_width += pMetrics[c].uLeftSpacing;
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
523 string_line_width += pMetrics[c].uWidth;
180
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
524 if (i < str_len)
1168
8b3e7d5ba069 fonts all cleaned
Gloval
parents: 1166
diff changeset
525 string_line_width +=pMetrics[c].uRightSpacing;
180
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
526 }
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
527 }
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
528 }
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
529 return string_line_width;
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
530 }
0
Ritor1
parents:
diff changeset
531
Ritor1
parents:
diff changeset
532
Ritor1
parents:
diff changeset
533 //----- (0044C502) --------------------------------------------------------
Ritor1
parents:
diff changeset
534 int GUIFont::AlignText_Center(unsigned int uCenterX, const char *pString)
Ritor1
parents:
diff changeset
535 {
180
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
536 signed int position; // esi@1
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
537
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
538 position = (signed int)(uCenterX - GetLineWidth(pString)) >> 1;
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
539 if ( position >= 0 )
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
540 return position;
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
541 else
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
542 return 0;
0
Ritor1
parents:
diff changeset
543 }
Ritor1
parents:
diff changeset
544
180
c5bd7a825ef2 come back
Ritor1
parents: 178
diff changeset
545 //----- (0044C768) --------------------------------------------------------
688
c0bfb386b15f some ui cleanup
Gloval
parents: 200
diff changeset
546 char * FitTextInAWindow( const char *pInString, GUIFont *pFont, GUIWindow *pWindow, signed int uX, int a5 )
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
547 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
548 unsigned char c;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
549 int uInStrLen;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
550 char digits[4];
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
551 int possible_transition_point;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
552 int string_pixel_Width;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
553 int start_pixel_offset;
0
Ritor1
parents:
diff changeset
554
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
555 if (!pInString)
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
556 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
557 MessageBoxW(nullptr, L"Invalid string passed !", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Font.cpp:445", 0);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
558 return 0;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
559 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
560 uInStrLen = strlen(pInString);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
561 strcpy(&temp_string[0], pInString);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
562 if (uInStrLen == 0)
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
563 return &temp_string[0];
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
564
1453
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
565 start_pixel_offset = string_pixel_Width=uX;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
566 possible_transition_point = 0;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
567 for ( int i = 0; i < uInStrLen; ++i )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
568 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
569 c = temp_string[i];
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
570 if (pFont->IsCharValid(c))
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
571 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
572 switch (c)
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
573 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
574 case '\t': // Horizontal tab 09
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
575 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
576 strncpy(digits, &temp_string[i + 1],3);
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
577 digits[3] = 0;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
578 string_pixel_Width = atoi(digits)+uX;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
579 i += 3;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
580 break;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
581 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
582 case '\n': //Line Feed 0A 10 (конец строки)
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
583 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
584 string_pixel_Width = start_pixel_offset;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
585 possible_transition_point = i;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
586 break;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
587 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
588 case '\f': //Form Feed, page eject 0C 12
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
589 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
590 i += 5;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
591 break;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
592 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
593 case '\r': //Carriage Return 0D 13
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
594 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
595 if ( !a5 )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
596 return (char*)pInString;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
597 break;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
598 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
599 case ' '://пробел
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
600 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
601 string_pixel_Width += pFont->pMetrics[c].uWidth;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
602 possible_transition_point = i;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
603 break;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
604 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
605 default:
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
606 if ((string_pixel_Width + pFont->pMetrics[c].uWidth + pFont->pMetrics[c].uLeftSpacing +
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
607 pFont->pMetrics[c].uRightSpacing) < pWindow->uFrameWidth )//наращивание длины строки или перенос
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
608 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
609 if ( i > possible_transition_point )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
610 string_pixel_Width += pFont->pMetrics[c].uLeftSpacing;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
611 string_pixel_Width += pFont->pMetrics[c].uWidth;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
612 if (i < uInStrLen)
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
613 string_pixel_Width += pFont->pMetrics[c].uRightSpacing;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
614 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
615 else//перенос строки и слова
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
616 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
617 temp_string[possible_transition_point] ='\n';
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
618 string_pixel_Width = start_pixel_offset;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
619 if ( i > possible_transition_point )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
620 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
621 for ( int j = possible_transition_point; j < i; ++j )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
622 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
623 c = temp_string[j];
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
624 if (pFont->IsCharValid(c))
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
625 {
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
626 if ( j > possible_transition_point )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
627 string_pixel_Width += pFont->pMetrics[c].uLeftSpacing;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
628 string_pixel_Width += pFont->pMetrics[c].uWidth;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
629 if ( j < i )
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
630 string_pixel_Width += pFont->pMetrics[c].uRightSpacing;
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
631 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
632 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
633 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
634 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
635 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
636 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
637 }
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
638 return &temp_string[0];
dfc9484ed94c GetDayPart and Journal_Draw
Ritor1
parents: 1297
diff changeset
639 }
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1205
diff changeset
640 //----- (00414162) --------------------------------------------------------
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1205
diff changeset
641 void uGameUIFontMain_initialize()
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1205
diff changeset
642 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 1545
diff changeset
643 uGameUIFontMain = Color16(0xAu, 0, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1205
diff changeset
644 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1205
diff changeset
645
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1205
diff changeset
646 //----- (00414174) --------------------------------------------------------
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1205
diff changeset
647 void uGameUIFontShadow_initialize()
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1205
diff changeset
648 {
2271
7ffddbe09e55 DrawMessageBox
Ritor1
parents: 2253
diff changeset
649 uGameUIFontShadow = Color16(0xE6u, 214, 193);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1205
diff changeset
650 }