mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +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" +
|
||||
"iffloordistl" +
|
||||
"ifdead" +
|
||||
"ifcutscene" +
|
||||
"ifcount" +
|
||||
"ifclient" +
|
||||
"ifceilingdistl" +
|
||||
|
@ -1257,6 +1258,7 @@ lpeg.P(false) +
|
|||
"default" +
|
||||
"debug" +
|
||||
"debris" +
|
||||
"cutscene" +
|
||||
"cstator" +
|
||||
"cstat" +
|
||||
"count" +
|
||||
|
|
|
@ -354,8 +354,8 @@ Directives
|
|||
Run-time commands
|
||||
^^^^^^^^^^^^^^^^^
|
||||
|
||||
*`activatecheat`*, *`clearmapstate`*, `save`, `savenn`, *`lineintersect`*,
|
||||
*`rayintersect`*, *`sectorofwall`*.
|
||||
*`activatecheat`*, *`clearmapstate`*, *`cutscene`*, *`ifcutscene`*, `save`,
|
||||
`savenn`, *`lineintersect`*, *`rayintersect`*, *`sectorofwall`*.
|
||||
|
||||
Additionally, various multiplayer-related commands either unconditionally
|
||||
return results as if no multiplayer game is in progress, or are non-functional
|
||||
|
|
|
@ -2951,6 +2951,8 @@ local Cinner = {
|
|||
starttrackvar = cmd(R)
|
||||
/ "_con._starttrack(%1)",
|
||||
|
||||
cutscene = cmd(R)
|
||||
/ handle.NYI,
|
||||
getmusicposition = cmd(W)
|
||||
/ "%1=_con._getmusicposition()",
|
||||
setmusicposition = cmd(R)
|
||||
|
@ -3083,6 +3085,11 @@ local Cif = {
|
|||
|
||||
ifactorsound = cmd(R,R)
|
||||
/ "_con._soundplaying(%1,%2)",
|
||||
ifcutscene = cmd(R)
|
||||
/ function (cs)
|
||||
handle.NYI()
|
||||
return "false"
|
||||
end,
|
||||
|
||||
ifp = (sp1 * tok.define)^1
|
||||
/ function (...) return format("_con._ifp(%d,_pli,_aci)", bit.bor(...)) end,
|
||||
|
|
Loading…
Reference in a new issue