-
(챕터 06) 문자를 출력하는 방법@ 16. 1 ~ 17. 1/게임프로그래밍의 정석 2014. 3. 2. 22:25
drawString(0,0,"HAHA") 라는 함수로 문자가 출력이 된다면..
drawString(int x, int y, const char* str)
{
int dstX=x;
int dstY=y;
const int cWidth=8;
const int cHeight=16;
for(unsigned int i=0;str[i]!='\n';++i){
int srcX=getImagePositionX(src[i]);int srcY=getImagePositionY(src[i]);
mFontImage->draw(dstX, dstY, srcX, srcY, cWidth, cHeight);
dstX+=cWidth;
}
}
이런식의 코드가 될것이라고...
문제는 getImagePostion()함수의 내용이다.
'@ 16. 1 ~ 17. 1 > 게임프로그래밍의 정석' 카테고리의 다른 글
실시간 게임(키보드 입력, 프레임레이트) (0) 2014.07.24 혼합공식 (0) 2014.07.23 (챕터 03) 이미지 파일을 사용하자(2) (0) 2014.03.01 싱글톤 클래스 (0) 2013.05.06 (챕터 03) 이미지 파일을 사용하자 (0) 2013.04.24