= 소스 íŒŒì¼ = == main.cpp == === ë§ê·¸ëŒ€ë¡œ ë©”ì¸ìž…니다..by.AllMemberz === {{{ #include <windows.h> #include "now_time.h" #include "alarmsetting.h" #include "cho.h" void main() { while(1) { now_time a; a.print_now_time(); system("cls"); cho b; b.setwatch(); system("cls"); alarmsetting c; c.alm_set(); } } }}} == now_time.cpp == === ì‹œê°„ì„ í‘œì‹œí•©ë‹ˆë‹¤ by.[ê¹€ìƒí˜¸], [ê¹€ì •ìš±] === {{{ /*********************************************************** * ////////현재시ê°í‘œì‹œ////////// * * ì•„ 진짜 ê³ ìƒ ë§Žì´í–ˆë‹¤ ã…‹ã…‹ã…‹ã…‹ * ìˆ«ìž í¬ê¸° ì •í•˜ëŠë¼ 황금비율 찾아봤다능... ;;( 1 : 1.618 ì´ë‹ˆê¹Œ 5:8 ì´ë¼ëŠ¥...) * ìˆ«ìž ë””ìžì¸ 한참 ê³ ë¯¼í–ˆë‹¤ëŠ¥... ;; * ìˆ«ìž ë„ìš°ëŠë¼ ì• ë¨¹ì—ˆë‹¤ëŠ¥... ;; * ë‚´ ë…¸ë ¥ì„ ì•Œì•„ë‹¬ë¼ëŠ¥...ã…¡,.ã…œ;; * By ì»´ê³µì˜ ìžëž‘ ***********************************************************/ #include <iostream> #include <time.h> #include <stdio.h> #include <conio.h> #include <windows.h> #include "now_time.h" using namespace std; typedef enum { NOCURSOR, SOLIDCURSOR, NORMALCURSOR } CURSOR_TYPE; extern int ah; extern int am; extern int as; void gotoxy(int x, int y) { COORD Cur; Cur.X=x; Cur.Y=y; SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),Cur); } void setcursortype(CURSOR_TYPE c) { CONSOLE_CURSOR_INFO CurInfo; switch (c) { case NOCURSOR: CurInfo.dwSize=1; CurInfo.bVisible=FALSE; break; case SOLIDCURSOR: CurInfo.dwSize=100; CurInfo.bVisible=TRUE; break; case NORMALCURSOR: CurInfo.dwSize=20; CurInfo.bVisible=TRUE; break; } SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE),&CurInfo); } void now_time::print_now_time() { char arr[10][8][16]={ // digit 노가다 {{" â– â– â– "}, {"â– â– "}, {"â– â– "}, {"â– â– "}, // ë””ìžì¸ ìˆ˜ì •ì˜ íŽ¸ì˜ì„±ì„ 위해 세로로 길게 씀. {"â– â– "}, {"â– â– "}, {"â– â– "}, {" â– â– â– "}}, {{" â– "}, {" â– â– "}, {"â– â– "}, {" â– "}, {" â– "}, {" â– "}, {" â– "}, {"â– â– â– â– â– "}}, {{" â– â– â– "}, {"â– â– "}, {"â– â– "}, {" â– "}, {" â– "}, {" â– "}, {" â– "}, {"â– â– â– â– â– "}}, {{" â– â– â– "}, {"â– â– "}, {" â– "}, {" â– â– "}, {" â– "}, {" â– "}, {"â– â– "}, {" â– â– â– "}}, {{" â– "}, {" â– â– "}, {" â– â– "}, {"â– â– "}, {"â– â– â– â– â– "}, {" â– "}, {" â– "}, {" â– "}}, {{"â– â– â– â– â– "}, {"â– "}, {"â– "}, {" â– â– â– "}, {" â– "}, {"â– â– "}, {"â– â– "}, {" â– â– â– "}}, {{" â– â– â– "}, {"â– "}, {"â– "}, {"â– â– â– â– "}, {"â– â– "}, {"â– â– "}, {"â– â– "}, {" â– â– â– "}}, {{"â– â– â– â– â– "}, {"â– â– "}, {" â– "}, {" â– "}, {" â– "}, {" â– "}, {" â– "}, {" â– "}}, {{" â– â– â– "}, {"â– â– "}, {"â– â– "}, {" â– â– â– "}, {"â– â– "}, {"â– â– "}, {"â– â– "}, {" â– â– â– "}}, {{" â– â– â– "}, {"â– â– "}, {"â– â– "}, {" â– â– â– â– "}, {" â– "}, {" â– "}, {" â– "}, {" â– â– â– "} } }; setcursortype(NOCURSOR); //커서를 숨긴다. time_t a; tm* b; int h,m,s; while(1){ char key; if(kbhit()) { key=getch(); if(key=='1') break; } system("cls"); gotoxy(24,2); // ë•¡ë•¡( : ) ìž…ë ¥ cout<<"â–¡"; gotoxy(24,5); cout<<"â–¡"; gotoxy(52,2); cout<<"â–¡"; gotoxy(52,5); cout<<"â–¡"; time(&a); //시스템 시간 받아오기 b=localtime(&a); h = b->tm_hour; //ì‹œ m = b->tm_min; //분 s = b->tm_sec; //ì´ˆ if((ah == h)&&(am==m)&&(as==s)) { printf("\a\a\a"); } int h10 = h/10; //ì‹œ,분,ì´ˆ ê°ê°ì˜ 10, 1ì˜ ìžë¦¬ 구하기 int h1 = h%10; int m10 = m/10; int m1 = m%10; int s10 = s/10; int s1 = s%10; for(int x=0;x<8;x++){ //위ì—서부터 한줄씩, ì´ 6줄 1초마다 ì¶œë ¥ gotoxy(0,x); cout<<arr[h10][x]; gotoxy(12,x); cout<<arr[h1][x]; gotoxy(28,x); cout<<arr[m10][x]; gotoxy(40,x); cout<<arr[m1][x]; gotoxy(56,x); cout<<arr[s10][x]; gotoxy(68,x); cout<<arr[s1][x]; } Sleep(1000); //요게 1초씩 대기함 ( ë§ê·¸ëŒ€ë¡œ sleep!!. 밀리세컨드 ì´ê¸° ë•Œë¬¸ì— 1000ì´ë¼ 씀) } } }}} == cho.cpp == === 초시계 ì˜ ëª¸í†µ~ by.[박재í™], [ë°•ì •ê·¼] === {{{ #include "cho.h" #include <iostream> #include <iomanip> #include <conio.h> #include <windows.h> cho::cho() { chk=0; clock2=0; prog_exit=false; } cho::~cho() { } void cho::setwatch() { std::cout<<"0 : 00 : 00"; char key=getch(); while(1) { if(prog_exit) break; //ëª¨ë“œì „í™˜ì— ì˜í•œ if(chk==0) //0으로 멈춰 있는 ìƒíƒœ { if(key=='1') // 모드 ì „í™˜ { prog_exit=true; } if(key=='3') //스탑워치 출발 { chk=1; Fulls=GetTickCount(); while(1) { clock=GetTickCount()-Fulls+clock2; rs=clock/1000; s=rs%60; m=clock/60000; rms=clock%1000; ms=rms/10; system("cls"); std::cout<<m<<" : "<<std::setw(2)<<std::setfill('0')<<s<<" : "<<std::setw(2)<<std::setfill('0')<<ms<<std::endl; if(kbhit()) { key=getch(); break; } } } } if(chk==1) //ìŠ¤íƒ‘ì›Œì¹˜ì¶œë°œí•˜ê³ ìžˆì„ë•Œ { if(key=='3') //ì¼ì‹œì •ì§€ { chk=2; system("cls"); std::cout<<m<<" : "<<std::setw(2)<<std::setfill('0')<<s<<" : "<<std::setw(2)<<std::setfill('0')<<ms<<std::endl; key=getch(); } if(key=='1') // 모드 ì „í™˜ { prog_exit=true; } } if(chk==2) //ì¼ì‹œì •ì§€ ìƒíƒœì¼ë•Œ { if(key=='2') { clock=0; system("cls"); std::cout<<"0 : 00 : 00"; key=getch(); chk=0; } if(key=='1') // 모드 ì „í™˜ { prog_exit=true; } if(key=='3') // ì¼ì‹œì •ì§€ ì‹œì 부터 다시시작 { Fulls=GetTickCount(); while(1) { clock2=(GetTickCount()-Fulls)+clock; rs=clock2/1000; s=rs%60; m=clock2/60000; rms=clock2%1000; ms=rms/10; system("cls"); std::cout<<m<<" : "<<std::setw(2)<<std::setfill('0')<<s<<" : "<<std::setw(2)<<std::setfill('0')<<ms<<std::endl; if(kbhit()) { chk=1; clock=clock2; key=getch(); break; } } } if(key=='1') // 모드 ì „í™˜ { prog_exit=true; } } } } }}} == alarmsetting.cpp == === ì•ŒëžŒì„ ì„¤ì •í•¨ by.[ê¹€ì •í˜œ], [윤종하] === {{{ //made by ê¹€ì •í˜œ //ì•ŒëžŒì„¤ì •í™”ë©´ 10.07.15 //ver.노가다 #include<iostream> #include <stdio.h> #include <stdlib.h> #include<conio.h> #include"alarmsetting.h" using namespace std; struct altm{ int altm_hour; int altm_min; int altm_sec; }settm; int ah,am,as; void alarmsetting::alm_set() { char button; //버튼 ìž„ë ¥í• ë³€ìˆ˜ 1,2,3중ì—.... struct altm settm; settm.altm_hour=00; settm.altm_min=00; settm.altm_sec=00; int* a; //ì„¤ì • 시간 위치 í¬ì¸í„° a=&settm.altm_hour;//첨엔 ì‹œê°„ì„ ê°€ë¦¬í‚¤ê³ ìžˆìŒ printf("■■알람 시간 ì„¤ì • â– â– \n"); printf("\n"); printf("%2dì‹œ%2d분%2dì´ˆ\n",settm.altm_hour,settm.altm_min,settm.altm_sec); printf("\n"); printf("1:종료, 2:시간↑, 3:칸옮기기→\n"); printf("\n"); //printf("1:mode ,2:reset ,3:start/stop\n"); for(;;) { button=getch();//ì´ì œ 버튼 ì„ íƒì„ ë°›ìŒ... if(button=='1')break;//모드 ì „í™˜ ë˜ê²Œ 루프 나가는 ê±°ìž„ if(button=='2'){//ì‹œê°„ì„ ì¦ê°€ 시키는 경우. function으로 묶어 줘야 í• ë“¯... system("cls"); *a += 1; if(settm.altm_hour==25)settm.altm_hour=00; if(settm.altm_min==60)settm.altm_min=00; if(settm.altm_sec==60)settm.altm_sec=00; printf("■■알람 시간 ì„¤ì • â– â– \n"); printf("\n"); printf("%2dì‹œ%2d분%2dì´ˆ\n",settm.altm_hour,settm.altm_min,settm.altm_sec); printf("\n"); printf("1:종료, 2:시간↑, 3:칸옮기기→\n"); printf("\n"); //printf("1:mode ,2:reset ,3:start/stop\n"); } if(button=='3'){//ì„¤ì • 시간 위치를 바꾸는 경우. ì—ì‹œ function으로 묶어줘야 í• ë“¯.... system("cls"); if(a==&settm.altm_hour) a = &settm.altm_min; else if(a==&settm.altm_min) a = &settm.altm_sec; else if(a==&settm.altm_sec) a = &settm.altm_hour; printf("■■알람 시간 ì„¤ì • â– â– \n"); printf("\n"); printf("%2dì‹œ%2d분%2dì´ˆ\n",settm.altm_hour,settm.altm_min,settm.altm_sec); printf("\n"); printf("1:종료, 2:시간↑, 3:칸옮기기→\n"); printf("\n"); //printf("1:mode ,2:reset ,3:start/stop\n"); } } system("cls"); if((settm.altm_hour==00)&&(settm.altm_min==00)&&(settm.altm_sec==00)){ printf("■■알람 ì„¤ì • 안ë¨ã…œ_ã…œ !â– â– \n"); } else { printf("■■알람 ì„¤ì • 완료ㅋ_ã…‹ !â– â– \n"); printf("\n"); printf("ì„¤ì •í•œ ì•ŒëžŒì€ %dì‹œ %d분 %dì´ˆ 입니다!\n",settm.altm_hour,settm.altm_min,settm.altm_sec); printf("\n"); ah = settm.altm_hour; am = settm.altm_min; as = settm.altm_sec; } //ê·¸ ë‹´ì— ì›ëž˜ ë‹¤ìŒ í™”ë©´ìœ¼ë¡œ ì´ë™... } /*여기까진ë°, function 으로 묶어 주는 게 í•„ìš” í• ê²ƒ ê°™ê³ ì•ŒëžŒì„ ì„¤ì •í•˜ëŠ” 위치가 ì–´ë””ì¸ì§€ë„ 좀 ì•Œë ¤ì£¼ëŠ”ê²Œ ì¢‹ì„ ê²ƒ 같다ㅎㅎ 깜빡ì´ê²Œ í•´ì„œ? */ }}} = í—¤ë” íŒŒì¼ = == now_time.h ==