aboutsummaryrefslogtreecommitdiffstats
path: root/unicode/src/encoding/CP1252.inc
blob: 0ea15819ad7aa963912977d155cdd223bda9ccec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
{* UltraStar Deluxe - Karaoke Game
 *
 * UltraStar Deluxe is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; see the file COPYING. If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 * $URL$
 * $Id$
 *}

{*
 * Windows-1252 Western Europe
 * (used by UltraStar Deluxe < 1.1)
 *}

type
  TEncoderCP1252 = class(TSingleByteEncoder)
  public
    function GetName(): AnsiString; override;
    function DecodeChar(InChr: AnsiChar; out OutChr: UCS4Char): boolean; override;
    function EncodeChar(InChr: UCS4Char; out OutChr: AnsiChar): boolean; override;
  end;

function TEncoderCP1252.GetName(): AnsiString;
begin
  Result := 'CP1252';
end;

const
  // Positions marked as #0 are invalid.
  CP1252Table: array[128..159] of UCS4Char = (
    { $80 }
    $20AC,     0, $201A, $0192, $201E, $2026, $2020, $2021,
    $02C6, $2030, $0160, $2039, $0152,     0, $017D,     0,
    { $90 }
        0, $2018, $2019, $201C, $201D, $2022, $2013, $2014,
    $02DC, $2122, $0161, $203A, $0153,     0, $017E, $0178
  );

function TEncoderCP1252.DecodeChar(InChr: AnsiChar; out OutChr: UCS4Char): boolean;
begin
  Result := true;
  if (InChr < #128) or (InChr >= #160) then
    OutChr := UCS4Char(Ord(InChr)) // use Ord() to avoid automatic conversion
  else
  begin
    OutChr := CP1252Table[Ord(InChr)];
    if (OutChr = 0) then
    begin
      Result := false;
      OutChr := Ord(ERROR_CHAR);
    end;
  end;
end;

function TEncoderCP1252.EncodeChar(InChr: UCS4Char; out OutChr: AnsiChar): boolean;
begin
  if (InChr < 128) or ((InChr >= 160) and (InChr <= 255)) then
  begin
    OutChr := AnsiChar(Ord(InChr));
    Result := true;
  end
  else
  begin
    case InChr of
      $20AC: OutChr := #128;
      // invalid: #129
      $201A: OutChr := #130;
      $0192: OutChr := #131;
      $201E: OutChr := #132;
      $2026: OutChr := #133;
      $2020: OutChr := #134;
      $2021: OutChr := #135;
      $02C6: OutChr := #136;
      $2030: OutChr := #137;
      $0160: OutChr := #138;
      $2039: OutChr := #139;
      $0152: OutChr := #140;
      // invalid: #141
      $017D: OutChr := #142;
      // invalid: #143
      // invalid: #144
      $2018: OutChr := #145;
      $2019: OutChr := #146;
      $201C: OutChr := #147;
      $201D: OutChr := #148;
      $2022: OutChr := #149;
      $2013: OutChr := #150;
      $2014: OutChr := #151;
      $02DC: OutChr := #152;
      $2122: OutChr := #153;
      $0161: OutChr := #154;
      $203A: OutChr := #155;
      $0153: OutChr := #156;
      // invalid: #157
      $017E: OutChr := #158;
      $0178: OutChr := #159;
      else begin
        OutChr := ERROR_CHAR;
        Result := false;
        Exit;
      end;
    end;
    Result := true;
  end;
end;

{* UltraStar Deluxe - Karaoke Game
 *
 * UltraStar Deluxe is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; see the file COPYING. If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 * $URL$
 * $Id$
 *}

{*
 * Windows-1252 Western Europe
 * (used by UltraStar Deluxe < 1.1)
 *}

type
  TEncoderCP1252 = class(TSingleByteEncoder)
  public
    function GetName(): AnsiString; override;
    function DecodeChar(InChr: AnsiChar; out OutChr: UCS4Char): boolean; override;
    function EncodeChar(InChr: UCS4Char; out OutChr: AnsiChar): boolean; override;
  end;

function TEncoderCP1252.GetName(): AnsiString;
begin
  Result := 'CP1252';
end;

const
  // Positions marked as #0 are invalid.
  CP1252Table: array[128..159] of UCS4Char = (
    { $80 }
    $20AC,     0, $201A, $0192, $201E, $2026, $2020, $2021,
    $02C6, $2030, $0160, $2039, $0152,     0, $017D,     0,
    { $90 }
        0, $2018, $2019, $201C, $201D, $2022, $2013, $2014,
    $02DC, $2122, $0161, $203A, $0153,     0, $017E, $0178
  );

function TEncoderCP1252.DecodeChar(InChr: AnsiChar; out OutChr: UCS4Char): boolean;
begin
  Result := true;
  if (InChr < #128) or (InChr >= #160) then
    OutChr := UCS4Char(Ord(InChr)) // use Ord() to avoid automatic conversion
  else
  begin
    OutChr := CP1252Table[Ord(InChr)];
    if (OutChr = 0) then
    begin
      Result := false;
      OutChr := Ord(ERROR_CHAR);
    end;
  end;
end;

function TEncoderCP1252.EncodeChar(InChr: UCS4Char; out OutChr: AnsiChar): boolean;
begin
  if (InChr < 128) or ((InChr >= 160) and (InChr <= 255)) then
  begin
    OutChr := AnsiChar(Ord(InChr));
    Result := true;
  end
  else
  begin
    case InChr of
      $20AC: OutChr := #128;
      // invalid: #129
      $201A: OutChr := #130;
      $0192: OutChr := #131;
      $201E: OutChr := #132;
      $2026: OutChr := #133;
      $2020: OutChr := #134;
      $2021: OutChr := #135;
      $02C6: OutChr := #136;
      $2030: OutChr := #137;
      $0160: OutChr := #138;
      $2039: OutChr := #139;
      $0152: OutChr := #140;
      // invalid: #141
      $017D: OutChr := #142;
      // invalid: #143
      // invalid: #144
      $2018: OutChr := #145;
      $2019: OutChr := #146;
      $201C: OutChr := #147;
      $201D: OutChr := #148;
      $2022: OutChr := #149;
      $2013: OutChr := #150;
      $2014: OutChr := #151;
      $02DC: OutChr := #152;
      $2122: OutChr := #153;
      $0161: OutChr := #154;
      $203A: OutChr := #155;
      $0153: OutChr := #156;
      // invalid: #157
      $017E: OutChr := #158;
      $0178: OutChr := #159;
      else begin
        OutChr := ERROR_CHAR;
        Result := false;
        Exit;
      end;
    end;
    Result := true;
  end;
end;

{* UltraStar Deluxe - Karaoke Game
 *
 * UltraStar Deluxe is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; see the file COPYING. If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 * $URL$
 * $Id$
 *}

{*
 * Windows-1252 Western Europe
 * (used by UltraStar Deluxe < 1.1)
 *}

type
  TEncoderCP1252 = class(TSingleByteEncoder)
  public
    function GetName(): AnsiString; override;
    function DecodeChar(InChr: AnsiChar; out OutChr: UCS4Char): boolean; override;
    function EncodeChar(InChr: UCS4Char; out OutChr: AnsiChar): boolean; override;
  end;

function TEncoderCP1252.GetName(): AnsiString;
begin
  Result := 'CP1252';
end;

const
  // Positions marked as #0 are invalid.
  CP1252Table: array[128..159] of UCS4Char = (
    { $80 }
    $20AC,     0, $201A, $0192, $201E, $2026, $2020, $2021,
    $02C6, $2030, $0160, $2039, $0152,     0, $017D,     0,
    { $90 }
        0, $2018, $2019, $201C, $201D, $2022, $2013, $2014,
    $02DC, $2122, $0161, $203A, $0153,     0, $017E, $0178
  );

function TEncoderCP1252.DecodeChar(InChr: AnsiChar; out OutChr: UCS4Char): boolean;
begin
  Result := true;
  if (InChr < #128) or (InChr >= #160) then
    OutChr := UCS4Char(Ord(InChr)) // use Ord() to avoid automatic conversion
  else
  begin
    OutChr := CP1252Table[Ord(InChr)];
    if (OutChr = 0) then
    begin
      Result := false;
      OutChr := Ord(ERROR_CHAR);
    end;
  end;
end;

function TEncoderCP1252.EncodeChar(InChr: UCS4Char; out OutChr: AnsiChar): boolean;
begin
  if (InChr < 128) or ((InChr >= 160) and (InChr <= 255)) then
  begin
    OutChr := AnsiChar(Ord(InChr));
    Result := true;
  end
  else
  begin
    case InChr of
      $20AC: OutChr := #128;
      // invalid: #129
      $201A: OutChr := #130;
      $0192: OutChr := #131;
      $201E: OutChr := #132;
      $2026: OutChr := #133;
      $2020: OutChr := #134;
      $2021: OutChr := #135;
      $02C6: OutChr := #136;
      $2030: OutChr := #137;
      $0160: OutChr := #138;
      $2039: OutChr := #139;
      $0152: OutChr := #140;
      // invalid: #141
      $017D: OutChr := #142;
      // invalid: #143
      // invalid: #144
      $2018: OutChr := #145;
      $2019: OutChr := #146;
      $201C: OutChr := #147;
      $201D: OutChr := #148;
      $2022: OutChr := #149;
      $2013: OutChr := #150;
      $2014: OutChr := #151;
      $02DC: OutChr := #152;
      $2122: OutChr := #153;
      $0161: OutChr := #154;
      $203A: OutChr := #155;
      $0153: OutChr := #156;
      // invalid: #157
      $017E: OutChr := #158;
      $0178: OutChr := #159;
      else begin
        OutChr := ERROR_CHAR;
        Result := false;
        Exit;
      end;
    end;
    Result := true;
  end;
end;