This commit is contained in:
parent
d94c447c19
commit
5116958bac
2 changed files with 21 additions and 5 deletions
|
@ -17,11 +17,16 @@
|
||||||
#include "gfx\bubicles.h"
|
#include "gfx\bubicles.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef __SPR_INGAMEFX_H__
|
||||||
|
#include <ingamefx.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
|
|
||||||
FontBank *CGameScene::s_genericFont;
|
FontBank *CGameScene::s_genericFont;
|
||||||
|
SpriteBank *CGameScene::s_sprites;
|
||||||
|
|
||||||
BubicleEmitterData bubData=
|
BubicleEmitterData bubData=
|
||||||
{
|
{
|
||||||
|
@ -68,12 +73,17 @@ void CGameScene::init()
|
||||||
|
|
||||||
CBubicleFactory::init();
|
CBubicleFactory::init();
|
||||||
testBub=CBubicleFactory::spawnEmitter(&bubData);
|
testBub=CBubicleFactory::spawnEmitter(&bubData);
|
||||||
|
|
||||||
|
s_sprites=new ("bg sprite") SpriteBank();
|
||||||
|
s_sprites->load(INGAMEFX_INGAMEFX_SPR);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
|
|
||||||
void CGameScene::shutdown()
|
void CGameScene::shutdown()
|
||||||
{
|
{
|
||||||
|
s_genericFont->dump(); delete s_genericFont;
|
||||||
|
s_sprites->dump(); delete s_sprites;
|
||||||
CBubicleFactory::shutdown();
|
CBubicleFactory::shutdown();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,6 +100,10 @@ char *Str="Sponge\nBob\nSquare\nPants";
|
||||||
s_genericFont->print(X,Y,Str);
|
s_genericFont->print(X,Y,Str);
|
||||||
|
|
||||||
CBubicleFactory::render();
|
CBubicleFactory::render();
|
||||||
|
|
||||||
|
POLY_FT4 *ft4=s_sprites->printFT4(FRM_BACKGROUND,0,0,0,0,1023);
|
||||||
|
setXYWH(ft4,20,20,512-40,256-40);
|
||||||
|
setRGB0(ft4,64,64,64);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
|
@ -98,10 +112,10 @@ void CGameScene::think(int _frames)
|
||||||
for(int i=0;i<_frames;i++)
|
for(int i=0;i<_frames;i++)
|
||||||
{
|
{
|
||||||
X+=Dx; Y+=Dy;
|
X+=Dx; Y+=Dy;
|
||||||
if (X<0+64) {X=0+64; Dx=-Dx;}
|
if (X<0+64) {X=0+64; Dx=getRndRange(5)+1;}
|
||||||
if (X>512-64) {X=512-64; Dx=-Dx;}
|
if (X>512-64) {X=512-64; Dx=-(getRndRange(5)+1);}
|
||||||
if (Y<0+64) {Y=0+64; Dy=-Dy;}
|
if (Y<0+64) {Y=0+64; Dy=getRndRange(5)+1;}
|
||||||
if (Y>256-64) {Y=256-64; Dy=-Dy;}
|
if (Y>256-64) {Y=256-64; Dy=-(getRndRange(5)+1);}
|
||||||
}
|
}
|
||||||
|
|
||||||
testBub->setPos(X,Y);
|
testBub->setPos(X,Y);
|
||||||
|
|
|
@ -28,7 +28,9 @@ public:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
static FontBank *s_genericFont;
|
static FontBank *s_genericFont;
|
||||||
|
static class SpriteBank *s_sprites;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue