/********************
	kn_calc.h
 ********************/
#ifndef _KN_CALC_H_
#define _KN_CALC_H_

/*******************************************************
	DEFINE
*******************************************************/
/* シーケンス */
#define CALC_SEQ_INIT		0
#define CALC_SEQ_APPR		1
#define CALC_SEQ_WAIT		2
#define CALC_SEQ_DISAP		3
#define CALC_SEQ_RANK_APPR	4
#define CALC_SEQ_RANK_WAIT	5
#define CALC_SEQ_RANK_DISAP	6
#define CALC_SEQ_RANK_EXIT	7

/* スクリーンの幅 */
#define CALC_SCR_WD			264
/* 初期位置 */
#define CALC_SCR_INIT_RX		320
#define CALC_SCR_INIT_LX		(0 - CALC_SCR_WD)
/* 静止位置 */
#define CALC_SCR_STOP_RX		20
/* 移動速度 */
#define CALC_SCR_VX				20


/*******************************************************************************
	VARIABLE
*******************************************************************************/

/*******************************************************************************
	FUNCTION
*******************************************************************************/
extern Gfx 		*makeMainGlistCalc( Gfx *gp );
extern void 	initMainGlistCalc( void );
extern void 	moveMainCalc( void );

#endif
