gzdoom-gles/src/playsim/a_morph.cpp

52 lines
1.6 KiB
C++
Raw Normal View History

//-----------------------------------------------------------------------------
//
// Copyright 2018 Christoph Oelckers
//
// This program 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.
//
// This program 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 this program. If not, see http://www.gnu.org/licenses/
//
//-----------------------------------------------------------------------------
//
2016-03-01 15:47:10 +00:00
#include "info.h"
2018-12-29 11:52:34 +00:00
#include "actor.h"
#include "vm.h"
2016-03-01 15:47:10 +00:00
2018-11-24 08:33:03 +00:00
bool P_MorphActor(AActor *activator, AActor *victim, PClassActor *ptype, PClassActor *mtype, int duration, int style, PClassActor *enter_flash, PClassActor *exit_flash)
{
2018-11-24 08:33:03 +00:00
IFVIRTUALPTR(victim, AActor, Morph)
2016-03-01 15:47:10 +00:00
{
2018-11-24 08:33:03 +00:00
VMValue params[] = { victim, activator, ptype, mtype, duration, style, enter_flash, exit_flash };
int retval;
VMReturn ret(&retval);
VMCall(func, params, countof(params), &ret, 1);
return !!retval;
2016-03-01 15:47:10 +00:00
}
return false;
2016-03-01 15:47:10 +00:00
}
bool P_UnmorphActor(AActor *activator, AActor *morphed, int flags, bool force)
2016-03-01 15:47:10 +00:00
{
IFVIRTUALPTR(morphed, AActor, UnMorph)
2016-03-01 15:47:10 +00:00
{
VMValue params[] = { morphed, activator, flags, force };
int retval;
VMReturn ret(&retval);
VMCall(func, params, countof(params), &ret, 1);
return !!retval;
2016-03-01 15:47:10 +00:00
}
return false;
}
2017-02-26 20:20:47 +00:00