forked from KolibriOS/kolibrios
a27452493c
git-svn-id: svn://kolibrios.org@9169 a494cfbc-eb01-0410-851d-a64ba20cac60
71 lines
1.9 KiB
C
71 lines
1.9 KiB
C
/*
|
|
* OpenTyrian: A modern cross-platform port of Tyrian
|
|
* Copyright (C) 2007-2009 The OpenTyrian Development Team
|
|
*
|
|
* 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.
|
|
*
|
|
* 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, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
#ifndef TYRIAN2_H
|
|
#define TYRIAN2_H
|
|
|
|
#include "opentyr.h"
|
|
|
|
#include "varz.h"
|
|
#include "helptext.h"
|
|
|
|
void intro_logos( void );
|
|
|
|
typedef struct
|
|
{
|
|
Uint8 link_num;
|
|
Uint8 armor;
|
|
Uint8 color;
|
|
}
|
|
boss_bar_t;
|
|
|
|
extern boss_bar_t boss_bar[2];
|
|
|
|
extern char tempStr[31];
|
|
extern JE_byte itemAvail[9][10], itemAvailMax[9];
|
|
|
|
void JE_createNewEventEnemy( JE_byte enemytypeofs, JE_word enemyoffset, Sint16 uniqueShapeTableI );
|
|
|
|
void JE_doNetwork( void );
|
|
|
|
uint JE_makeEnemy( struct JE_SingleEnemyType *enemy, Uint16 eDatI, Sint16 uniqueShapeTableI );
|
|
|
|
void JE_eventJump( JE_word jump );
|
|
|
|
void JE_whoa( void );
|
|
|
|
void JE_barX ( JE_word x1, JE_word y1, JE_word x2, JE_word y2, JE_byte col );
|
|
|
|
Sint16 JE_newEnemy( int enemyOffset, Uint16 eDatI, Sint16 uniqueShapeTableI );
|
|
void JE_drawEnemy( int enemyOffset );
|
|
void JE_starShowVGA( void );
|
|
|
|
void JE_main( void );
|
|
void JE_loadMap( void );
|
|
bool JE_titleScreen( JE_boolean animate );
|
|
void JE_readTextSync( void );
|
|
void JE_displayText( void );
|
|
|
|
bool JE_searchFor( JE_byte PLType, JE_byte* out_index );
|
|
void JE_eventSystem( void );
|
|
|
|
void draw_boss_bar( void );
|
|
|
|
#endif /* TYRIAN2_H */
|
|
|