Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
UltimateZoneBuilder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alam Ed Arias
UltimateZoneBuilder
Commits
ad5b542c
Commit
ad5b542c
authored
8 years ago
by
ZZYZX
Browse files
Options
Downloads
Patches
Plain Diff
Internal: finished enumeration of ZScript actor fields and methods
parent
b42de7db
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Source/Core/ZDoom/ZScriptParser.cs
+440
-51
440 additions, 51 deletions
Source/Core/ZDoom/ZScriptParser.cs
Source/Core/ZDoom/ZScriptTokenizer.cs
+88
-0
88 additions, 0 deletions
Source/Core/ZDoom/ZScriptTokenizer.cs
with
528 additions
and
51 deletions
Source/Core/ZDoom/ZScriptParser.cs
+
440
−
51
View file @
ad5b542c
This diff is collapsed.
Click to expand it.
Source/Core/ZDoom/ZScriptTokenizer.cs
+
88
−
0
View file @
ad5b542c
...
...
@@ -248,6 +248,94 @@ namespace CodeImp.DoomBuilder.ZDoom
return
tok
;
}
// check integer
if
((
c
>=
'0'
&&
c
<=
'9'
)
||
c
==
'.'
)
{
bool
isint
=
true
;
bool
isdouble
=
(
c
==
'.'
);
bool
isexponent
=
false
;
if
(
isdouble
)
// make sure next character is an integer, otherwise its probably a member access
{
char
cnext
=
reader
.
ReadChar
();
if
(!(
cnext
>=
'0'
&&
cnext
<=
'9'
))
{
isint
=
false
;
reader
.
BaseStream
.
Position
--;
}
}
if
(
isint
)
{
bool
isoctal
=
(
c
==
'0'
);
bool
ishex
=
false
;
string
i_content
=
""
;
i_content
+=
c
;
while
(
true
)
{
char
cnext
=
reader
.
ReadChar
();
if
(!
isdouble
&&
(
cnext
==
'x'
)
&&
i_content
.
Length
==
1
)
{
isoctal
=
false
;
ishex
=
true
;
}
else
if
((
cnext
>=
'0'
&&
cnext
<=
'7'
)
||
(!
isoctal
&&
cnext
>=
'8'
&&
cnext
<=
'9'
)
||
(
ishex
&&
((
cnext
>=
'a'
&&
cnext
<=
'f'
)
||
(
cnext
>=
'A'
&&
cnext
<=
'F'
))))
{
i_content
+=
cnext
;
}
else
if
(!
ishex
&&
!
isdouble
&&
!
isexponent
&&
cnext
==
'.'
)
{
isdouble
=
true
;
isoctal
=
false
;
i_content
+=
'.'
;
}
else
if
(!
isoctal
&&
!
ishex
&&
!
isexponent
&&
(
cnext
==
'e'
||
cnext
==
'E'
))
{
isexponent
=
true
;
isdouble
=
true
;
i_content
+=
'e'
;
cnext
=
reader
.
ReadChar
();
if
(
cnext
==
'-'
)
i_content
+=
'-'
;
else
reader
.
BaseStream
.
Position
--;
}
else
{
reader
.
BaseStream
.
Position
--;
break
;
}
}
tok
=
new
ZScriptToken
();
tok
.
Type
=
(
isdouble
?
ZScriptTokenType
.
Double
:
ZScriptTokenType
.
Integer
);
tok
.
Value
=
i_content
;
try
{
if
(
ishex
||
isoctal
||
!
isdouble
)
{
int
numbase
=
10
;
if
(
ishex
)
numbase
=
16
;
else
if
(
isoctal
)
numbase
=
8
;
tok
.
ValueInt
=
Convert
.
ToInt32
(
tok
.
Value
,
numbase
);
tok
.
ValueDouble
=
tok
.
ValueInt
;
}
else
if
(
isdouble
)
{
string
dval
=
(
tok
.
Value
[
0
]
==
'.'
)
?
"0"
+
tok
.
Value
:
tok
.
Value
;
tok
.
ValueDouble
=
Convert
.
ToDouble
(
dval
);
tok
.
ValueInt
=
(
int
)
tok
.
ValueDouble
;
}
}
catch
(
Exception
)
{
//throw new Exception(tok.ToString());
return
null
;
}
return
tok
;
}
}
// check everything else
switch
(
c
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment