2013-11-20 02:53:17 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* 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 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2014-02-18 01:34:20 +00:00
|
|
|
*
|
2013-11-20 02:53:17 +00:00
|
|
|
* 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.
|
2014-02-18 01:34:20 +00:00
|
|
|
*
|
2013-11-20 02:53:17 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-10-03 22:02:37 +00:00
|
|
|
#ifndef NGI_FLOATERS_H
|
|
|
|
#define NGI_FLOATERS_H
|
2013-11-20 02:53:17 +00:00
|
|
|
|
2017-11-16 16:31:59 +00:00
|
|
|
#include "common/array.h"
|
|
|
|
#include "common/ptr.h"
|
|
|
|
|
2020-10-03 21:55:39 +00:00
|
|
|
namespace NGI {
|
2013-11-20 02:53:17 +00:00
|
|
|
|
|
|
|
class StaticANIObject;
|
|
|
|
class Scene;
|
2014-01-03 21:25:37 +00:00
|
|
|
class ReactPolygonal;
|
2013-11-20 02:53:17 +00:00
|
|
|
|
|
|
|
struct FloaterArray1 {
|
|
|
|
int val1;
|
|
|
|
int val2;
|
2014-01-03 21:58:31 +00:00
|
|
|
|
|
|
|
FloaterArray1() { val1 = 0; val2 = 0; }
|
2013-11-20 02:53:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct FloaterArray2 {
|
|
|
|
StaticANIObject *ani;
|
|
|
|
int val2;
|
|
|
|
int val3;
|
|
|
|
int val4;
|
|
|
|
int val5;
|
|
|
|
int val6;
|
|
|
|
int val7;
|
|
|
|
int val8;
|
|
|
|
double val9;
|
|
|
|
double val11;
|
|
|
|
int val13;
|
|
|
|
int countdown;
|
|
|
|
int val15;
|
|
|
|
int fflags;
|
2014-01-03 21:58:31 +00:00
|
|
|
|
2017-11-16 16:31:59 +00:00
|
|
|
FloaterArray2() : ani(nullptr), val2(0), val3(0), val4(0), val5(0), val6(0), val7(0), val8(0),
|
2014-01-03 21:58:31 +00:00
|
|
|
val9(0.0), val11(0.0), val13(0), countdown(0), val15(0), fflags(0) {}
|
2013-11-20 02:53:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Floaters {
|
|
|
|
public:
|
2017-11-16 16:31:59 +00:00
|
|
|
Common::ScopedPtr<ReactPolygonal> _hRgn;
|
|
|
|
Common::Array<FloaterArray1> _array1;
|
|
|
|
Common::Array<FloaterArray2> _array2;
|
2013-11-20 02:53:17 +00:00
|
|
|
|
|
|
|
void init(GameVar *var);
|
2014-01-03 21:58:31 +00:00
|
|
|
void genFlies(Scene *sc, int x, int y, int priority, int flags);
|
2013-11-20 02:53:17 +00:00
|
|
|
void update();
|
|
|
|
void stopAll();
|
|
|
|
};
|
|
|
|
|
2020-10-03 21:55:39 +00:00
|
|
|
} // End of namespace NGI
|
2013-11-20 02:53:17 +00:00
|
|
|
|
2020-10-03 22:02:37 +00:00
|
|
|
#endif /* NGI_FLOATERS_H */
|