더블버퍼링 질문입니다..
무크
질문 제목 : 질문 내용 :
c언어로 시계프로그램을 만들었는데 1/100초씩 tick받아서 갱신해주는 거라 깜빡임이 너무 심하네요..그래서 알아봤더니 더블버퍼링을 쓰면 된다고 하시는데 한번도 들어보거나 본적이 없어서 어떻게 써야할지 난감하네요..검색을하고 공부하려고 해도 api를 몰라서 공부하고 쓰기엔 시간이 너무 촉박해서 염치없이 질문올립니다..#include stdio.h
#include windows.h
#include tchar.h
#include stdlib.h
void printconsolescreen(const int ncurview, handle hconsolebuf[2], lpctstr lpcharacter, coord dwwritecoord);
void updatescreen(int *ncurview, handle hconsolebuf[2]);
void drawrectangle(){
char mark[21][4] = { ☆,★,○,●,◎,◇,◆,□,■,△,▲,▽,▼,◈,▣,♤,♠,♡,♥,♧,♣};
int x,y;
system(cls);
for(y=0; y20; y++){
for(x=0; x30; x++){
printf(%s, mark[rand()%21]);
}
printf(\n);
}
}}
void drawrectanglebuffering(int *ncurview, handle hconsolebuf[2]){
coord pos = {0, 0};
int x,y;
lpctstr mark[21] = { _t(☆),_t(★),_t(○),_t(●),_t(◎),_t(◇),_t(◆),_t(□),_t(■),_t(△),_t(▲),_t(▽),_t(▼),_t(◈),_t(▣),_t(♤),_t(♠),_t(♡),_t(♥),_t(♧),_t(♣)};
for(y=0; y20; y++){
pos.y = y;
for(x=0; x30; x++){
pos.x = 2*x;
printconsolescreen(*ncurview, hconsolebuf, mark[rand()%21], pos);
}
}
updatescreen(ncurview, hconsolebuf);
}
int main(int argc, const char *argv[]){
handle hconsolebuf[2];
int ncurview=0;
bool bflag;
int i=0;
hconsolebuf[0] = createconsolescreenbuffer(generic_read|generic_write, 0, null, console_textmode_buffer, null);
hconsolebuf[1] = createconsolescreenbuffer(generic_read|generic_write, 0, null, console_textmode_buffer, null);
while(i++100){
drawrectanglebuffering(&ncurview, hconsolebuf);
//drawrectangle();
sleep(100);
}
return 0;
}
void printconsolescreen(const int ncurview, handle hconsolebuf[2], lpctstr lpcharacter, coord dwwritecoord)
{
writeconsoleoutputcharacter(hconsolebuf[ncurview], lpcharacter, _tcslen(lpcharacter), dwwritecoord, null);
}
void updatescreen(int *ncurview, handle hconsolebuf[2])
{
setconsoleactivescreenbuffer(hconsolebuf[*ncurview]);
*ncurview = (*ncurview+1)%2;
}인터넷에서 더블버퍼링이라고 올려진 코드를 찾아봤는데요 .. 위에 코드가 나오더라구요제가 출력해주고 싶은건
char blockmodel[10][5][4]=
{
/* 첫 번째 블록
■■■■
■ ■
■ ■
■ ■
■■■■ */
{
{1, 1, 1, 1},
{1, 0, 0, 1},
{1, 0, 0, 1},
{1, 0, 0, 1},
{1, 1, 1, 1} },
/* 두 번째 블록
■
■
■
■
죃sp; ■ */
{
{0, 0, 0, 1},
{0, 0, 0, 1},
{0, 0, 0, 1},
{0, 0, 0, 1},
{0, 0, 0, 1} }, 이런식인데 저 코드를 어떻게 바꿔야 할까요? ..
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676182 | 숫자 순서대로 배열하는법 | 권뉴 | 2024-11-24 |
2676152 | 기본적인거 하나 질문드립니다. | 개미 | 2024-11-24 |
2676124 | 함수선언관련 질문이에요~...털썩..수정완료 (2) | 가지 | 2024-11-24 |
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |