forums.ps2dev.org Forum Index forums.ps2dev.org
Homebrew PS2, PSP & PS3 Development Discussions
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Font Help

 
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development
View previous topic :: View next topic  
Author Message
TheMan



Joined: 03 Jan 2006
Posts: 10

PostPosted: Sun May 07, 2006 7:56 am    Post subject: Font Help Reply with quote

Hey, earlier today I was looking into sort of porting over the LUA way of simple png font loading, but I've ran into a few problems. Maybe you guys can help. Currently, it runs, but the font doesn't get displayed.

The font part of the code is here, and the rest is at the rapidshare link.
Code:
int char2Font(char char_input[255]) {
   int indexNumber = 0;
   int i;
   for(i=0;i++;i<=strlen(inputString)) {
      if (stricmp(inputString[i], char_input)==0) {
         return indexNumber;
      }
      indexNumber = indexNumber + letterPixelsWide;
   }
}

void blitChar(char text[255], int posX, int posY) {
   blitAlphaImageToScreen(char2Font(text), 0, letterPixelsWide, letterPixelsTall, font, posX, posY);
}

void blitString(int posX, int posY, char text[255]) {
   int incX = 0;
   int i;
   strupr(text);
   for(i=0;i++;i<=strlen(text)) {
      blitChar(text[i], posX + incX, posY);
      incX = incX + letterPixelsWide;
   }
}


http://rapidshare.de/files/19803101/Font.zip.html

Thanks!
Back to top
View user's profile Send private message
Shine



Joined: 03 Dec 2004
Posts: 728
Location: Germany

PostPosted: Sun May 07, 2006 8:12 am    Post subject: Re: Font Help Reply with quote

http://www.tcm.phy.cam.ac.uk/~mjr/C/for.html
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development All times are GMT + 10 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group