#include #include #include // Define a constant for the value of PI #define GL_PI 3.1415f GLfloat xRot = 0.0f; GLfloat yRot = 0.0f; // Globalis ambien feny szine GLfloat ambientLight[] = {0.3, 0.3, 0.3, 1.0}; // 1. csak diffuz fenyt ado fenyforras parameterei GLfloat l1_ambient[] = {0.0, 0.0, 0.0, 1.0}; GLfloat l1_diffuse[] = {0.6, 0.6, 0.6, 1.0}; GLfloat l1_specular[] = {0.0, 0.0, 0.0, 1.0}; GLfloat l1_position[] = {50.0, 50.0, 50.0, 1.0}; // 2. csak spekularis fenyt ado fenyforras parameterei GLfloat l2_ambient[] = {0.0, 0.0, 0.0, 1.0}; GLfloat l2_diffuse[] = {0.0, 0.0, 0.0, 1.0}; GLfloat l2_specular[] = {1.0, 1.0, 1.0, 1.0}; GLfloat l2_position[] = {-50.0, 50.0, 50.0, 1.0}; // 2. fenyforras reflektor iranyitottsaga GLfloat l2_direction[] = { 1.0, -1.0, -1.0, 1.0}; // targyak spekularis csillogasanak szine GLfloat specref[] = {1.0, 1.0, 1.0, 1.0}; // fuggveny egy darab normalvektorokkal ellatott negyzet kirajzolasara void solidQuad(float size) { glBegin(GL_POLYGON); glVertex3f( size/2, size/2, 0); glVertex3f(-size/2, size/2, 0); glVertex3f(-size/2, -size/2, 0); glVertex3f( size/2, -size/2, 0); glVertex3f( size/2, size/2, 0); glEnd(); } // fuggveny, ami normalvektorokkal ellatott negyzetekbol kockat allit ossze void solidCube(float size) { glPushMatrix(); glRotatef(0, 0, 0, 0); glTranslatef(0, 0, size/2); solidQuad(size); glPopMatrix(); glPushMatrix(); glRotatef(90, 0, 1, 0); glTranslatef(0, 0, size/2); solidQuad(size); glPopMatrix(); glPushMatrix(); glRotatef(180, 0, 1, 0); glTranslatef(0, 0, size/2); solidQuad(size); glPopMatrix(); glPushMatrix(); glRotatef(-90, 0, 1, 0); glTranslatef(0, 0, size/2); solidQuad(size); glPopMatrix(); glPushMatrix(); glRotatef(90, 1, 0, 0); glTranslatef(0, 0, size/2); solidQuad(size); glPopMatrix(); glPushMatrix(); glRotatef(-90, 1, 0, 0); glTranslatef(0, 0, size/2); solidQuad(size); glPopMatrix(); return; } // Called to draw scene void RenderScene(void) { // Clear the window with current clearing color glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glPushMatrix(); glRotatef(xRot, 1.0f, 0.0f, 0.0f); glRotatef(yRot, 0.0f, 1.0f, 0.0f); // >> Modellezo programresz // alakzat szine (az ambiens es diffuz fenyekre hat) glColor3f(1.0, 0.0, 0.0); // alakzat spekularis csillgasa (feher csillogas, a szintol fuggetlenul) glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, specref); glMateriali(GL_FRONT_AND_BACK, GL_SHININESS, 50); // kocka kirajzolasa solidCube(10); // << Modellezo programresz glPopMatrix(); // Flush drawing commands glutSwapBuffers(); } // This function does any needed initialization on the rendering // context. void SetupRC() { // Black background glClearColor(0.0f, 0.0f, 0.0f, 1.0f ); glEnable(GL_DEPTH_TEST); // fenyek hasznalatanak engedelyezese glEnable(GL_LIGHTING); // globalis ambiens fenyforras beallitasa glLightModelfv( GL_LIGHT_MODEL_AMBIENT, ambientLight ); // 1. csak diffuz fenyforras parameterezese glLightfv(GL_LIGHT0, GL_AMBIENT, l1_ambient); glLightfv(GL_LIGHT0, GL_DIFFUSE, l1_diffuse); glLightfv(GL_LIGHT0, GL_SPECULAR, l1_specular); glLightfv(GL_LIGHT0, GL_POSITION, l1_position); glEnable(GL_LIGHT0); // 2. csak spekularis fenyforras parameterezese glLightfv(GL_LIGHT1, GL_AMBIENT, l2_ambient); glLightfv(GL_LIGHT1, GL_DIFFUSE, l2_diffuse); glLightfv(GL_LIGHT1, GL_SPECULAR, l2_specular); glLightfv(GL_LIGHT1, GL_POSITION, l2_position); glEnable(GL_LIGHT1); // 2. fenyforras reflektor tulajdonsagainak beallitasa glLightfv(GL_LIGHT1, GL_SPOT_DIRECTION, l2_direction); glLightf(GL_LIGHT1, GL_SPOT_CUTOFF, 60); glLightf(GL_LIGHT1, GL_SPOT_EXPONENT, 50); // szin alapu anyagjellemok engedelyezese az ambiens es diffuz fenyekre glColorMaterial(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE); glEnable(GL_COLOR_MATERIAL); // normalvektorok automatikus normalizalasa glEnable(GL_NORMALIZE); } void SpecialKeys(int key, int x, int y) { // ... int state; if(key == GLUT_KEY_UP) xRot-= 5.0f; if(key == GLUT_KEY_DOWN) xRot += 5.0f; if(key == GLUT_KEY_LEFT) yRot -= 5.0f; if(key == GLUT_KEY_RIGHT) yRot += 5.0f; if(xRot > 356.0f) xRot = 0.0f; if(xRot < 0.0f) xRot = 355.0f; if(yRot > 356.0f) yRot = 0.0f; if(yRot < -1.0f) yRot = 355.0f; printf("Funkciobillentyu lenyomva, kodja %d, pozicio (%d,%d). ", key, x, y); state = glutGetModifiers(); if(state & GLUT_ACTIVE_SHIFT) printf("SHIFT lenyomva. "); if(state & GLUT_ACTIVE_CTRL) printf("CTRL lenyomva. "); if(state & GLUT_ACTIVE_ALT) printf("ALT lenyomva. "); printf("\n"); fflush(stdout); // Refresh the Window glutPostRedisplay(); } void Keyboard(unsigned char key, int x, int y) { // ... int state; printf("Billentyu lenyomva, kodja %c, pozicio (%d,%d). ", key, x, y); state = glutGetModifiers(); if(state & GLUT_ACTIVE_SHIFT) printf("SHIFT lenyomva. "); if(state & GLUT_ACTIVE_CTRL) printf("CTRL lenyomva. "); if(state & GLUT_ACTIVE_ALT) printf("ALT lenyomva. "); printf("\n"); fflush(stdout); glutPostRedisplay(); } void Timer(int value) { printf("Timer esemeny (%d)\n", value); glutPostRedisplay(); glutTimerFunc(1000, Timer, value + 1); } void Idle() { glutPostRedisplay(); } void ChangeSizeOrtho(int w, int h) { GLfloat nRange = 25.0f; // Prevent a divide by zero if(h == 0) h = 1; // Set Viewport to window dimensions glViewport(0, 0, w, h); // Reset projection matrix stack glMatrixMode(GL_PROJECTION); glLoadIdentity(); // Establish clipping volume (left, right, bottom, top, near, far) if (w <= h) glOrtho (-nRange, nRange, -nRange*h/w, nRange*h/w, -nRange, nRange); else glOrtho (-nRange*w/h, nRange*w/h, -nRange, nRange, -nRange, nRange); // Reset Model view matrix stack glMatrixMode(GL_MODELVIEW); glLoadIdentity(); } void ChangeSizePerspective(GLsizei w, GLsizei h) { GLfloat fAspect; // Prevent a divide by zero if(h == 0) h = 1; // Set Viewport to window dimensions glViewport(0, 0, w, h); fAspect = (GLfloat)w/(GLfloat)h; // Reset coordinate system glMatrixMode(GL_PROJECTION); glLoadIdentity(); // Produce the perspective projection gluPerspective(60.0f, // fovy fAspect, // aspect 10.0, // zNear 100.0 // zFar ); gluLookAt(0.0, 0.0, 50.0, // eye 0.0, 0.0, 0.0, // center 0.0, 1.0, 0.0 // up ); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); } int main(int argc, char* argv[]) { // >> Inicializalas glutInit(&argc, argv); glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH); //glutInitWindowSize(300, 300); glutCreateWindow("GLUT Alap"); // << Inicializalas // >> Callback fuggvenyek glutReshapeFunc(ChangeSizeOrtho); // Parhuzamos vetites //glutReshapeFunc(ChangeSizePerspective); // Perspektiv vetites glutSpecialFunc(SpecialKeys); glutKeyboardFunc(Keyboard); glutDisplayFunc(RenderScene); //glutTimerFunc(1000, Timer, 1); // 1 mp mulva meghivodik a Timer() fuggveny //glutIdleFunc(Idle); // Idle(), ha nem tortenik semmi // << Callback fuggvenyek SetupRC(); glutMainLoop(); return 0; }