annotate GUIFont.cpp @ 1592:1efbaf1d01c3

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