Code: Select all
#include "alpha_gfx.h"
#include <string>
#include<nds.h>
using namespace std;
void main(){
/* General counting variable. */
unsigned int i;
/* Variable to index pointer array */
int pIndex = 0;
/* Pointer array to reference frames in oam */
u16 * alphaTilesPtr[30];
for( i=0; i<30; i++){
/* Allocate memory for alpha_gfxTiles. */
alphaTilesPtr[i] = oamAllocateGfx(oam_sub, SpriteSize_16x16, SpriteColorFormat_16Color);
/* Copy tiles into memory. */
swiCopy((void*)alpha_gfxTiles[32*i], (void*)alphaTilesPtr[i], alpha_gfxTilesLen/30);
}
/* Copy alpha_gfx palette into allocated memory */
swiCopy(alpha_gfxPal, SPRITE_PALETTE_SUB, alpha_gfxPalLen);
/* String with characters. */
string hudStr = "SHIELD";
/* Read character strings and convert into alpha sprites. */
for (i = 0; i < hudStr.size(); i++) {
if(hudStr[i] == 'A') pIndex= 0;
else if(hudStr[i] == 'B') pIndex= 1;
else if(hudStr[i] == 'C') pIndex= 2;
else if(hudStr[i] == 'D') pIndex= 3;
else if(hudStr[i] == 'E') pIndex= 4;
else if(hudStr[i] == 'F') pIndex= 5;
else if(hudStr[i] == 'G') pIndex= 6;
else if(hudStr[i] == 'H') pIndex= 7;
else if(hudStr[i] == 'I') pIndex= 8;
else if(hudStr[i] == 'J') pIndex= 9;
else if(hudStr[i] == 'K') pIndex=10;
else if(hudStr[i] == 'L') pIndex=11;
else if(hudStr[i] == 'M') pIndex=12;
else if(hudStr[i] == 'N') pIndex=13;
else if(hudStr[i] == 'P') pIndex=14;
else if(hudStr[i] == 'P') pIndex=15;
else if(hudStr[i] == 'Q') pIndex=16;
else if(hudStr[i] == 'R') pIndex=17;
else if(hudStr[i] == 'S') pIndex=18;
else if(hudStr[i] == 'T') pIndex=19;
else if(hudStr[i] == 'U') pIndex=20;
else if(hudStr[i] == 'V') pIndex=21;
else if(hudStr[i] == 'W') pIndex=22;
else if(hudStr[i] == 'X') pIndex=23;
else if(hudStr[i] == 'Y') pIndex=24;
else if(hudStr[i] == 'Z') pIndex=25;
//last 4 frames not implemented yet. =)
oamSet (&OamSub, i, (34+(i*16)), 34, 0, 0, SpriteSize_16x16, SpriteColorFormat_16Color, alphaTilesPtr[pIndex],
-1, false, false, false, false, false);
}
while(TRUE){
swiWaitForVblank();
oamUpdate(&OamSub);
}
}
Here is the image I'm working with: http://postimage.org/image/7zbntsw2j/
Can someone please help me with this problem? Thanks
