반응형
마우스 입력함수를 알게 되었으면 이번에는 마우스 함수를 응용 해 봐야 한다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | int be_input() { INPUT_RECORD input_record; DWORD input_count; PeekConsoleInput(CIN, &input_record, 1, &input_count); return input_count; } int get_input(WORD *vkey, COORD *pos) { INPUT_RECORD input_record; DWORD input_count; static int check_pen = 0; // 고정시켜야 펜도 고정됨 ReadConsoleInput(CIN, &input_record, 1, &input_count); switch(input_record.EventType) { case MOUSE_EVENT: if(pos && (input_record.Event.MouseEvent.dwButtonState & FROM_LEFT_1ST_BUTTON_PRESSED)) //왼쪽버튼 { CONSOLE_SCREEN_BUFFER_INFO csbi; GetConsoleScreenBufferInfo(COUT,&csbi); *pos = input_record.Event.MouseEvent.dwMousePosition; pos->X -= csbi.srWindow.Left; pos->Y -= csbi.srWindow.Top; if(pos->X <= 79 && pos->Y <= 2) {/*그릴수 없음*/} else if(pos->X <= 79 && pos->Y >= 24) {/*그릴수 없음*/} else if(pos -> X == 79) {/*그릴수 없음*/} else if(pos->X <= 7 && pos->Y <= 24) { if(pos->X >= 0 && pos->X<= 2) { if(pos->Y >= 9 && pos->Y <= 10) { check_pen = 0; } else if(pos->Y >= 11 && pos->Y<= 12) { check_pen = 1; } else if(pos->Y >= 13 && pos->Y<= 14) { check_pen = 2; } } else if(pos->X >= 4 && pos->X <= 6) { if(pos->Y >= 9 && pos->Y <=10) { check_pen = 3; } else if(pos->Y >= 11 && pos->Y<= 12) { check_pen = 4; } else if(pos->Y >= 13 && pos->Y<= 14) { check_pen = 5; } } } else { if(check_pen == 0) { gotoxy(pos->X,pos->Y); printf("."); gotoxy(0,0); rec_font[count_font] = 0; count_font ++; } else if(check_pen == 1) { gotoxy(pos->X,pos->Y); printf("*"); gotoxy(0,0); rec_font[count_font] = 1; count_font ++; } else if(check_pen == 2) { gotoxy(pos->X,pos->Y); printf("+"); gotoxy(0,0); rec_font[count_font] = 2; count_font ++; } else if(check_pen == 3) { gotoxy(pos->X,pos->Y); printf("#"); gotoxy(0,0); rec_font[count_font] = 3; count_font ++; } else if(check_pen == 4) { gotoxy(pos->X,pos->Y); printf("="); gotoxy(0,0); rec_font[count_font] = 4; count_font ++; } else if(check_pen == 5) { gotoxy(pos->X,pos->Y); printf("-"); gotoxy(0,0); rec_font[count_font] = 5; count_font ++; } } return MOUSE_EVENT; } else if(pos && (input_record.Event.MouseEvent.dwButtonState & RIGHTMOST_BUTTON_PRESSED)) // 오른쪽 버튼 눌렀을때 { CONSOLE_SCREEN_BUFFER_INFO csbi; GetConsoleScreenBufferInfo(COUT,&csbi); *pos = input_record.Event.MouseEvent.dwMousePosition; pos->X -= csbi.srWindow.Left; pos->Y -= csbi.srWindow.Top; if(pos->X <= 79 && pos->Y <= 2) {/*지울수 없음*/} else if(pos->X <= 7 && pos->Y<= 24) {/*지울수 없음*/} else if(pos->X <= 79 && pos->Y >= 24) {/*지울수 없음*/} else if(pos -> X == 79) {/*지울수 없음*/} else { gotoxy(pos->X,pos->Y); printf(" "); gotoxy(0,0); rec_font[count_font] = 6; // 6은 공백 count_font ++; } return MOUSE_EVENT; } break; } // FlushConsoleInputBuffer(CIN); return 0; } | Crocus |
위의 소스코드를 보면 필자는 be_input이 무엇을 하는지 솔직히 잘 모른다.
하지만 get_input함수는 어떤 버튼을 클릭하였을때 이벤트를 실행해 주는 함수임을 알아냈다.
그리하여 왼쪽버튼을 눌렀을때 함수안에 소스코드를 입력하여 나만의 색깔을 가지는 함수로 거듭나게 했다.
(자세한 소스코드들의 의미는 다음 글에서 확인 할 수 있다.)
이처럼 누누히 말했던 것이지만, 함수를 해석하려하거나, c언어 자체를 외우려 하지 말자.
함수를 다 외우는것은 절대 무리다. 그 오픈소스들을 누가 더 잘활용하느냐에 따라 프로그램의 질이 바뀌게 된다.
반응형
'Basic > C++' 카테고리의 다른 글
bgm 및 효과음 동시구현 (26) | 2014.01.15 |
---|---|
Console 2차원 그래픽 구현 - 4. 그래픽 구현 및 응용 (0) | 2014.01.14 |
Console 2차원 그래픽 구현 - 3. Console 그림판 소스코드 (2) | 2014.01.14 |
Console 2차원 그래픽 구현 - 1. 마우스 입력받기 (15) | 2014.01.14 |
system함수를 응용한 시스템 종료 (0) | 2014.01.14 |