-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathToken.cpp
180 lines (167 loc) · 4.33 KB
/
Token.cpp
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
/*
===========================================================================
Doom 3 GPL Source Code
Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
This file is part of the Doom 3 GPL Source Code ("Doom 3 Source Code").
Doom 3 Source Code 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 3 of the License, or
(at your option) any later version.
Doom 3 Source Code 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 Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
===========================================================================
*/
#include "sys/platform.h"
#include "idlib/math/Math.h"
#include "idlib/Token.h"
/*
================
idToken::NumberValue
================
*/
void idToken::NumberValue( void ) {
int i, pow, div, c;
const char *p;
double m;
assert( type == TT_NUMBER );
p = c_str();
floatvalue = 0;
intvalue = 0;
// floating point number
if ( subtype & TT_FLOAT ) {
if ( subtype & ( TT_INFINITE | TT_INDEFINITE | TT_NAN ) ) {
if ( subtype & TT_INFINITE ) { // 1.#INF
unsigned int inf = 0x7f800000;
floatvalue = (double) *(float*)&inf;
}
else if ( subtype & TT_INDEFINITE ) { // 1.#IND
unsigned int ind = 0xffc00000;
floatvalue = (double) *(float*)&ind;
}
else if ( subtype & TT_NAN ) { // 1.#QNAN
unsigned int nan = 0x7fc00000;
floatvalue = (double) *(float*)&nan;
}
}
else {
while( *p && *p != '.' && *p != 'e' ) {
floatvalue = floatvalue * 10.0 + (double) (*p - '0');
p++;
}
if ( *p == '.' ) {
p++;
for( m = 0.1; *p && *p != 'e'; p++ ) {
floatvalue = floatvalue + (double) (*p - '0') * m;
m *= 0.1;
}
}
if ( *p == 'e' ) {
p++;
if ( *p == '-' ) {
div = true;
p++;
}
else if ( *p == '+' ) {
div = false;
p++;
}
else {
div = false;
}
pow = 0;
for ( pow = 0; *p; p++ ) {
pow = pow * 10 + (int) (*p - '0');
}
for ( m = 1.0, i = 0; i < pow; i++ ) {
m *= 10.0;
}
if ( div ) {
floatvalue /= m;
}
else {
floatvalue *= m;
}
}
}
intvalue = idMath::Ftol( floatvalue );
}
else if ( subtype & TT_DECIMAL ) {
while( *p ) {
intvalue = intvalue * 10 + (*p - '0');
p++;
}
floatvalue = intvalue;
}
else if ( subtype & TT_IPADDRESS ) {
c = 0;
while( *p && *p != ':' ) {
if ( *p == '.' ) {
while( c != 3 ) {
intvalue = intvalue * 10;
c++;
}
c = 0;
}
else {
intvalue = intvalue * 10 + (*p - '0');
c++;
}
p++;
}
while( c != 3 ) {
intvalue = intvalue * 10;
c++;
}
floatvalue = intvalue;
}
else if ( subtype & TT_OCTAL ) {
// step over the first zero
p += 1;
while( *p ) {
intvalue = (intvalue << 3) + (*p - '0');
p++;
}
floatvalue = intvalue;
}
else if ( subtype & TT_HEX ) {
// step over the leading 0x or 0X
p += 2;
while( *p ) {
intvalue <<= 4;
if (*p >= 'a' && *p <= 'f')
intvalue += *p - 'a' + 10;
else if (*p >= 'A' && *p <= 'F')
intvalue += *p - 'A' + 10;
else
intvalue += *p - '0';
p++;
}
floatvalue = intvalue;
}
else if ( subtype & TT_BINARY ) {
// step over the leading 0b or 0B
p += 2;
while( *p ) {
intvalue = (intvalue << 1) + (*p - '0');
p++;
}
floatvalue = intvalue;
}
subtype |= TT_VALUESVALID;
}
/*
================
idToken::ClearTokenWhiteSpace
================
*/
void idToken::ClearTokenWhiteSpace( void ) {
whiteSpaceStart_p = NULL;
whiteSpaceEnd_p = NULL;
linesCrossed = 0;
}