Develop
2003.04.23 10:52
[c] OpenGL 마우스 이벤트
조회 수 10269 댓글 0
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();
}
-
Read More
[c] 문자열 처리 관련 함수들 설명
-
Read More
[linux] 프로세스 관련 시스템콜
-
Read More
[c] 시간 계산 하는 프로그램 소스코드
-
Read More
[php] 마시마로 캐릭터 방명록
-
Read More
[c] OpenGL 색 입방체의 회전(입체)
-
Read More
[c] 신기한 atoi함수(www.game79.net)
-
Read More
[c][java] 소켓 프로그래밍(채팅 서버 C, 클라이언트 Java)
-
Read More
[js] 점점 커지는 새창..
-
Read More
[c] OpenGL 마우스 이벤트
-
Read More
[js] 사라지는 브라우저
-
Read More
[js] 이벤트 핸들러(Event Handlers)
-
Read More
[js] 키보드 아스키코드(ASCII) 코드보기