~hikiko/nux/arb-srgba-shader

« back to all changes in this revision

Viewing changes to NuxCore/Character/NAscii.cpp

  • Committer: Neil Jagdish Patel
  • Date: 2010-09-01 19:25:37 UTC
  • Revision ID: neil.patel@canonical.com-20100901192537-mfz7rm6q262pewg6
Import and build NuxCore

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "NKernel.h"
 
2
#include "NAscii.h"
 
3
 
 
4
NAMESPACE_BEGIN
 
5
 
 
6
// Windows-1252 code page
 
7
t_uchar GAscii[] = {
 
8
    0x0,    0x1,    0x2,    0x3,    0x4,    0x5,    0x6,    0x7,    0x8,    0x9,    0xA,    0xB,    0xC,    0xD,    0xE,    0xF,
 
9
    0x10,   0x11,   0x12,   0x13,   0x14,   0x15,   0x16,   0x17,   0x18,   0x19,   0x1A,   0x1B,   0x1C,   0x1D,   0x1E,   0x1F,
 
10
    ' ',    '!',    '"',    '#',    '$',    '%',    '&',    '\'',   '(',    ')',    '*',    '+',    ',',    '-',    '.',    '/',
 
11
    '0',    '1',    '2',    '3',    '4',    '5',    '6',    '7',    '8',    '9',    ':',    ';',    '<',    '=',    '>',    '?',
 
12
    '@',    'A',    'B',    'C',    'D',    'E',    'F',    'G',    'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
 
13
    'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',    'X',    'Y',    'Z',    '[',    '\\',   ']',    '^',    '_',
 
14
    '`',    'a',    'b',    'c',    'd',    'e',    'f',    'g',    'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
 
15
    'p',    'q',    'r',    's',    't',    'u',    'v',    'w',    'x',    'y',    'z',    '{',    '|',    '}',    '~',    0xFF,
 
16
    '�',    0x81,   '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    0x8d,   '�',    0x8f,
 
17
    0x90,   '�',    '�',    '�',    '�',    '�',    '�',    '�',    0x98,   '�',    '�',    '�',    '�',    0x9d,   '�',    '�',
 
18
    0xa0,   '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',
 
19
    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',
 
20
    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',
 
21
    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',
 
22
    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',
 
23
    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�',    '�'
 
24
};
 
25
 
 
26
 
 
27
NAMESPACE_END