annotate GUIFont.cpp @ 2436:ed1e4cff79a2

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