Develop
2003.04.23 10:52

[c] OpenGL 마우스 이벤트

Views 8731 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
OpenGL 마우스 이벤트 처리 예제
#include<stdio.h>
#include<stdlib.h>
#include<GL/glut.h>

short rightbuttonpressed = 0;
double r=1.0, g=0.0, b=0.0;

void display(void){
    glClearColor(r, g, b, 1.0);
    glClear(GL_COLOR_BUFFER_BIT);
    glColor3f(1.0, 1.0, 1.0);
    glBegin(GL_LINES);
        glVertex2f(-1.0, 0.0); glVertex2f(0.0, 0.0);
    glEnd();

    glFlush();
}

void keyboard(unsigned char key, int x, int y){
    switch(key){
    case 'r' : 
        r=1.0;
        g=b=0.0;
        glutPostRedisplay();
        break;
    case 'g' :
        g=1.0;
        r=b=0.0;
        glutPostRedisplay();
        break;
    case 'b' :
        b=1.0;
        r=g=0.0;
        glutPostRedisplay();
        break;
    case 'q':
        exit(0);
    }
}

void mousepress(int button, int state, int x, int y){
    if((button==GLUT_LEFT_BUTTON) && (state==GLUT_DOWN))
        printf("*** The left mouse button was pressed at (%d, %d)n", x, y);
    else if((button==GLUT_RIGHT_BUTTON) && (state==GLUT_DOWN))
        rightbuttonpressed = 1;
    else if((button==GLUT_RIGHT_BUTTON) && (state==GLUT_UP))
        rightbuttonpressed = 0;
}

void mousemove(int x, int y){
    if(rightbuttonpressed)
        printf("$$$ The right mouse button is now at (%d, %d).n",x,y);
}

void reshape(int width, int height){
    printf("### The new windows size is %dx%d.n",width, height);
}

void RegisterCallback(void){
    glutDisplayFunc(display);
    glutKeyboardFunc(keyboard);
    glutMouseFunc(mousepress);
    glutMotionFunc(mousemove);
    glutReshapeFunc(reshape);
}

void main(int argc, char **argv){
    glutInit(&argc, argv);
    glutInitDisplayMode(GLUT_RGBA);
    glutInitWindowSize(500,500);
    glutCreateWindow("My Second OpenGL Code");
    RegisterCallback();
    glutMainLoop();
}


?

  1. [c] 문자열 정렬 함수 qsort()

  2. [c] OpenGL 임시로 여기 올림..

  3. [c] 정수를 2진수로 변환 (재귀,비트연산)

  4. [c] OpenGL 관측점 이동

  5. [c] 팩토리얼 서버/클라이언트..

  6. [c] 패킷정보출력(경로, 패킷길이, 3hand, sync, ack..)

  7. [c] 라인수 입력받아 마름모꼴 출력하기..

  8. [c] 단기과정[01/06] sizeof, 실수표현, 메모리, 연산자

  9. [c] 단기과정[01/07] 제어문, 피보나치수열

  10. [c] 단기과정[01/08] 배열, 포인터

  11. [c] 단기과정[01/08] (다차원 + 배열)포인터, void 포인터

  12. [c] 단기과정[01/08] 과제.. 파스칼 삼각형

  13. [c] 단기과정[01/10] 과제.. swap(any data, ..)

  14. [c] 단기과정[01/14] 파일 입출력

  15. [c] 단기과정[01/14] 피보나치, 파스칼.. 파일입출력

  16. [c] 단기과정[01/15] 피보나치, 파스칼.. 링크리스트

Board Pagination Prev 1 ... 6 7 8 9 10 ... 53 Next
/ 53