mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 01:10:51 +00:00
LunaCON: add 'cutscene' and 'ifcutscene' as NYI commands. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@5008 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
59fa70cc58
commit
ba84b3c4b6
3 changed files with 11 additions and 2 deletions
|
@ -1140,6 +1140,7 @@ lpeg.P(false) +
|
||||||
"ifgapzl" +
|
"ifgapzl" +
|
||||||
"iffloordistl" +
|
"iffloordistl" +
|
||||||
"ifdead" +
|
"ifdead" +
|
||||||
|
"ifcutscene" +
|
||||||
"ifcount" +
|
"ifcount" +
|
||||||
"ifclient" +
|
"ifclient" +
|
||||||
"ifceilingdistl" +
|
"ifceilingdistl" +
|
||||||
|
@ -1257,6 +1258,7 @@ lpeg.P(false) +
|
||||||
"default" +
|
"default" +
|
||||||
"debug" +
|
"debug" +
|
||||||
"debris" +
|
"debris" +
|
||||||
|
"cutscene" +
|
||||||
"cstator" +
|
"cstator" +
|
||||||
"cstat" +
|
"cstat" +
|
||||||
"count" +
|
"count" +
|
||||||
|
|
|
@ -354,8 +354,8 @@ Directives
|
||||||
Run-time commands
|
Run-time commands
|
||||||
^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
*`activatecheat`*, *`clearmapstate`*, `save`, `savenn`, *`lineintersect`*,
|
*`activatecheat`*, *`clearmapstate`*, *`cutscene`*, *`ifcutscene`*, `save`,
|
||||||
*`rayintersect`*, *`sectorofwall`*.
|
`savenn`, *`lineintersect`*, *`rayintersect`*, *`sectorofwall`*.
|
||||||
|
|
||||||
Additionally, various multiplayer-related commands either unconditionally
|
Additionally, various multiplayer-related commands either unconditionally
|
||||||
return results as if no multiplayer game is in progress, or are non-functional
|
return results as if no multiplayer game is in progress, or are non-functional
|
||||||
|
|
|
@ -2951,6 +2951,8 @@ local Cinner = {
|
||||||
starttrackvar = cmd(R)
|
starttrackvar = cmd(R)
|
||||||
/ "_con._starttrack(%1)",
|
/ "_con._starttrack(%1)",
|
||||||
|
|
||||||
|
cutscene = cmd(R)
|
||||||
|
/ handle.NYI,
|
||||||
getmusicposition = cmd(W)
|
getmusicposition = cmd(W)
|
||||||
/ "%1=_con._getmusicposition()",
|
/ "%1=_con._getmusicposition()",
|
||||||
setmusicposition = cmd(R)
|
setmusicposition = cmd(R)
|
||||||
|
@ -3083,6 +3085,11 @@ local Cif = {
|
||||||
|
|
||||||
ifactorsound = cmd(R,R)
|
ifactorsound = cmd(R,R)
|
||||||
/ "_con._soundplaying(%1,%2)",
|
/ "_con._soundplaying(%1,%2)",
|
||||||
|
ifcutscene = cmd(R)
|
||||||
|
/ function (cs)
|
||||||
|
handle.NYI()
|
||||||
|
return "false"
|
||||||
|
end,
|
||||||
|
|
||||||
ifp = (sp1 * tok.define)^1
|
ifp = (sp1 * tok.define)^1
|
||||||
/ function (...) return format("_con._ifp(%d,_pli,_aci)", bit.bor(...)) end,
|
/ function (...) return format("_con._ifp(%d,_pli,_aci)", bit.bor(...)) end,
|
||||||
|
|
Loading…
Reference in a new issue