2013-12-30 17:41:15 -05:00
|
|
|
//****************************************************************************
|
2012-08-14 18:00:48 -04:00
|
|
|
// Model: game.qm
|
2013-10-10 20:01:51 -04:00
|
|
|
// File: ./missile.cpp
|
2012-08-14 18:00:48 -04:00
|
|
|
//
|
2013-10-10 20:01:51 -04:00
|
|
|
// This code has been generated by QM tool (see state-machine.com/qm).
|
|
|
|
// DO NOT EDIT THIS FILE MANUALLY. All your changes will be lost.
|
2012-08-14 18:00:48 -04:00
|
|
|
//
|
2013-10-10 20:01:51 -04:00
|
|
|
// This program is open source 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.
|
|
|
|
//
|
|
|
|
// 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.
|
2013-12-30 17:41:15 -05:00
|
|
|
//****************************************************************************
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/4/1) ...................................................................
|
2012-08-14 18:00:48 -04:00
|
|
|
#include "qp_port.h"
|
|
|
|
#include "bsp.h"
|
|
|
|
#include "game.h"
|
|
|
|
|
|
|
|
namespace GAME {
|
|
|
|
|
|
|
|
//Q_DEFINE_THIS_FILE
|
|
|
|
|
|
|
|
// local objects -------------------------------------------------------------
|
2013-12-30 17:41:15 -05:00
|
|
|
namespace GAME {
|
|
|
|
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2) ...................................................................
|
2013-12-30 17:41:15 -05:00
|
|
|
class Missile : public QP::QMActive {
|
2012-08-14 18:00:48 -04:00
|
|
|
private:
|
|
|
|
uint8_t m_x;
|
|
|
|
uint8_t m_y;
|
|
|
|
uint8_t m_exp_ctr;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Missile();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static QP::QState initial(Missile * const me, QP::QEvt const * const e);
|
2013-12-30 17:41:15 -05:00
|
|
|
static QP::QState armed (Missile * const me, QP::QEvt const * const e);
|
|
|
|
static QP::QMState const armed_s;
|
|
|
|
static QP::QState flying (Missile * const me, QP::QEvt const * const e);
|
|
|
|
static QP::QMState const flying_s;
|
|
|
|
static QP::QState exploding (Missile * const me, QP::QEvt const * const e);
|
|
|
|
static QP::QState exploding_e(Missile * const me);
|
|
|
|
static QP::QMState const exploding_s;
|
2012-08-14 18:00:48 -04:00
|
|
|
};
|
2013-10-10 20:01:51 -04:00
|
|
|
|
2013-12-30 17:41:15 -05:00
|
|
|
} // namespace GAME
|
2012-08-14 18:00:48 -04:00
|
|
|
static Missile l_missile; // the sole instance of the Missile active object
|
|
|
|
|
|
|
|
// Public-scope objects ------------------------------------------------------
|
|
|
|
QP::QActive * const AO_Missile = &l_missile; // opaque pointer
|
|
|
|
|
|
|
|
// Active object definition --------------------------------------------------
|
2013-12-30 17:41:15 -05:00
|
|
|
namespace GAME {
|
|
|
|
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2) ...................................................................
|
|
|
|
// @(/3/2/3) .................................................................
|
2013-12-30 17:41:15 -05:00
|
|
|
Missile::Missile()
|
|
|
|
: QMActive(Q_STATE_CAST(&Missile::initial))
|
|
|
|
{}
|
2012-08-14 18:00:48 -04:00
|
|
|
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2/4) .................................................................
|
|
|
|
// @(/3/2/4/0)
|
2012-08-14 18:00:48 -04:00
|
|
|
QP::QState Missile::initial(Missile * const me, QP::QEvt const * const e) {
|
|
|
|
me->subscribe( TIME_TICK_SIG);
|
|
|
|
|
|
|
|
QS_OBJ_DICTIONARY(&l_missile); // object dictionary for Missile object
|
|
|
|
|
|
|
|
QS_FUN_DICTIONARY(&Missile::initial); // dictionaries for Missile HSM
|
|
|
|
QS_FUN_DICTIONARY(&Missile::armed);
|
|
|
|
QS_FUN_DICTIONARY(&Missile::flying);
|
|
|
|
QS_FUN_DICTIONARY(&Missile::exploding);
|
|
|
|
|
|
|
|
QS_SIG_DICTIONARY(MISSILE_FIRE_SIG, &l_missile); // local signals
|
|
|
|
QS_SIG_DICTIONARY(HIT_WALL_SIG, &l_missile);
|
|
|
|
QS_SIG_DICTIONARY(DESTROYED_MINE_SIG, &l_missile);
|
2013-12-30 17:41:15 -05:00
|
|
|
return QM_INITIAL(&Missile::armed_s, QP::QMsm::s_emptyAction_);
|
2012-08-14 18:00:48 -04:00
|
|
|
}
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2/4/1) ...............................................................
|
2013-12-30 17:41:15 -05:00
|
|
|
QP::QMState const Missile::armed_s = {
|
|
|
|
static_cast<QP::QMState const *>(0),
|
|
|
|
Q_STATE_CAST(&Missile::armed),
|
|
|
|
Q_ACTION_CAST(0)
|
|
|
|
};
|
2012-08-14 18:00:48 -04:00
|
|
|
QP::QState Missile::armed(Missile * const me, QP::QEvt const * const e) {
|
2013-10-10 20:01:51 -04:00
|
|
|
QP::QState status_;
|
2012-08-14 18:00:48 -04:00
|
|
|
switch (e->sig) {
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2/4/1/0)
|
2012-08-14 18:00:48 -04:00
|
|
|
case MISSILE_FIRE_SIG: {
|
|
|
|
me->m_x = Q_EVT_CAST(ObjectPosEvt)->x;
|
|
|
|
me->m_y = Q_EVT_CAST(ObjectPosEvt)->y;
|
2013-12-30 17:41:15 -05:00
|
|
|
status_ = QM_TRAN(&flying_s, QP::QMsm::s_emptyAction_);
|
2012-08-14 18:00:48 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
2013-12-30 17:41:15 -05:00
|
|
|
status_ = QM_SUPER();
|
2012-08-14 18:00:48 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-10-10 20:01:51 -04:00
|
|
|
return status_;
|
2012-08-14 18:00:48 -04:00
|
|
|
}
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2/4/2) ...............................................................
|
2013-12-30 17:41:15 -05:00
|
|
|
QP::QMState const Missile::flying_s = {
|
|
|
|
static_cast<QP::QMState const *>(0),
|
|
|
|
Q_STATE_CAST(&Missile::flying),
|
|
|
|
Q_ACTION_CAST(0)
|
|
|
|
};
|
2012-08-14 18:00:48 -04:00
|
|
|
QP::QState Missile::flying(Missile * const me, QP::QEvt const * const e) {
|
2013-10-10 20:01:51 -04:00
|
|
|
QP::QState status_;
|
2012-08-14 18:00:48 -04:00
|
|
|
switch (e->sig) {
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2/4/2/0)
|
2012-08-14 18:00:48 -04:00
|
|
|
case TIME_TICK_SIG: {
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2/4/2/0/0)
|
2012-08-14 18:00:48 -04:00
|
|
|
if (me->m_x + GAME_MISSILE_SPEED_X < GAME_SCREEN_WIDTH) {
|
|
|
|
me->m_x += GAME_MISSILE_SPEED_X;
|
|
|
|
// tell the Tunnel to draw the Missile and test for wall hits
|
2013-12-30 17:41:15 -05:00
|
|
|
ObjectImageEvt *oie = Q_NEW(ObjectImageEvt, MISSILE_IMG_SIG);
|
|
|
|
oie->x = me->m_x;
|
|
|
|
oie->y = me->m_y;
|
|
|
|
oie->bmp = MISSILE_BMP;
|
|
|
|
AO_Tunnel->POST(oie, me);
|
|
|
|
status_ = QM_HANDLED();
|
2012-08-14 18:00:48 -04:00
|
|
|
}
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2/4/2/0/1)
|
2012-08-14 18:00:48 -04:00
|
|
|
else {
|
2013-12-30 17:41:15 -05:00
|
|
|
status_ = QM_TRAN(&armed_s, QP::QMsm::s_emptyAction_);
|
2012-08-14 18:00:48 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2/4/2/1)
|
2012-08-14 18:00:48 -04:00
|
|
|
case HIT_WALL_SIG: {
|
2013-12-30 17:41:15 -05:00
|
|
|
static QP::QActionHandler const act_[] = {
|
|
|
|
Q_ACTION_CAST(&Missile::exploding_e),
|
|
|
|
Q_ACTION_CAST(0)
|
|
|
|
};
|
|
|
|
status_ = QM_TRAN(&exploding_s, act_);
|
2012-08-14 18:00:48 -04:00
|
|
|
break;
|
|
|
|
}
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2/4/2/2)
|
2012-08-14 18:00:48 -04:00
|
|
|
case DESTROYED_MINE_SIG: {
|
|
|
|
AO_Ship->POST(e, me);
|
2013-12-30 17:41:15 -05:00
|
|
|
status_ = QM_TRAN(&armed_s, QP::QMsm::s_emptyAction_);
|
2012-08-14 18:00:48 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
2013-12-30 17:41:15 -05:00
|
|
|
status_ = QM_SUPER();
|
2012-08-14 18:00:48 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-10-10 20:01:51 -04:00
|
|
|
return status_;
|
2012-08-14 18:00:48 -04:00
|
|
|
}
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2/4/3) ...............................................................
|
2013-12-30 17:41:15 -05:00
|
|
|
QP::QMState const Missile::exploding_s = {
|
|
|
|
static_cast<QP::QMState const *>(0),
|
|
|
|
Q_STATE_CAST(&Missile::exploding),
|
|
|
|
Q_ACTION_CAST(0)
|
|
|
|
};
|
|
|
|
QP::QState Missile::exploding_e(Missile * const me) {
|
|
|
|
me->m_exp_ctr = 0U;
|
|
|
|
return QM_ENTRY(&exploding_s);
|
|
|
|
}
|
2012-08-14 18:00:48 -04:00
|
|
|
QP::QState Missile::exploding(Missile * const me, QP::QEvt const * const e) {
|
2013-10-10 20:01:51 -04:00
|
|
|
QP::QState status_;
|
2012-08-14 18:00:48 -04:00
|
|
|
switch (e->sig) {
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2/4/3/0)
|
2012-08-14 18:00:48 -04:00
|
|
|
case TIME_TICK_SIG: {
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2/4/3/0/0)
|
2012-08-14 18:00:48 -04:00
|
|
|
if ((me->m_x >= GAME_SPEED_X) && (me->m_exp_ctr < 15U)) {
|
|
|
|
++me->m_exp_ctr; // advance the explosion counter
|
|
|
|
me->m_x -= GAME_SPEED_X; // move the explosion by one step
|
|
|
|
|
|
|
|
// tell the Tunnel to render the current stage of Explosion
|
2013-12-30 17:41:15 -05:00
|
|
|
ObjectImageEvt *oie = Q_NEW(ObjectImageEvt, EXPLOSION_SIG);
|
|
|
|
oie->x = me->m_x + 3U; // x-pos of explosion
|
|
|
|
oie->y = (int8_t)((int)me->m_y - 4U); // y-pos
|
|
|
|
oie->bmp = EXPLOSION0_BMP + (me->m_exp_ctr >> 2);
|
|
|
|
AO_Tunnel->POST(oie, me);
|
|
|
|
status_ = QM_HANDLED();
|
2012-08-14 18:00:48 -04:00
|
|
|
}
|
2013-10-10 20:01:51 -04:00
|
|
|
// @(/3/2/4/3/0/1)
|
2012-08-14 18:00:48 -04:00
|
|
|
else {
|
2013-12-30 17:41:15 -05:00
|
|
|
status_ = QM_TRAN(&armed_s, QP::QMsm::s_emptyAction_);
|
2012-08-14 18:00:48 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
2013-12-30 17:41:15 -05:00
|
|
|
status_ = QM_SUPER();
|
2012-08-14 18:00:48 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-10-10 20:01:51 -04:00
|
|
|
return status_;
|
2012-08-14 18:00:48 -04:00
|
|
|
}
|
|
|
|
|
2013-12-30 17:41:15 -05:00
|
|
|
} // namespace GAME
|
2012-08-14 18:00:48 -04:00
|
|
|
|
|
|
|
} // namespace GAME
|