InteractionHofstra University1 Graphics Programming Input and Interaction.

Slides:



Advertisements
Similar presentations
OpenGL CMSC340 3D Character Design & Animation. What is OpenGL? A low-level graphics library specification designed for use with the C and C++ provides…
Advertisements

CS 4731 Lecture 2: Intro to 2D, 3D, OpenGL and GLUT (Part I) Emmanuel Agu.
Chapter 3: Input and Interaction Instructor: Shih-Shinh Huang 1.
CSC461 Lecture 10: Widgets and Picking Objectives Introduce menus in GLUT Picking –Select objects from the display –Three methods Put things together.
OpenGL (I). What is OpenGL (OGL)? OGL is a 3D graphics & modeling library Can also use it to draw 2D objects.
InteractionHofstra University1 Graphics Programming Input and Interaction.
31/1/2006Based on: Angel (4th Edition) & Akeine-Möller & Haines (2nd Edition)1 CSC345: Advanced Graphics & Virtual Environments Lecture 3: Introduction.
1 Angel: Interactive Computer Graphics 5E © Addison-Wesley 2009 GLUT Callback Functions.
Based on slides created by Edward Angel
CSC461 Lecture 9: GLUT Callbacks Objectives Introduce double buffering for smooth animations Programming event input with GLUT.
CS 480/680 Computer Graphics Programming with Open GL Part 8: Working with Callbacks Dr. Frederick C Harris, Jr. Fall 2011.
Using Graphics Libraries Lecture 3 Mon, Sep 1, 2003.
Introduction to OpenGL and GLUT GLUT. What is OpenGL? An application programming interface (API) A (low-level) Graphics rendering API Generate high-quality.
1 Working with Callbacks Yuanfeng Zhou Shandong University.
COMPUTER GRAPHICS Hochiminh city University of Technology Faculty of Computer Science and Engineering CHAPTER 03: Input & Interaction.
1 Angel: Interactive Computer Graphics 4E © Addison-Wesley 2005 Chapter 3: Input and Interaction.
More on Drawing in OpenGL: Examples CSC 2141 Introduction to Computer Graphics.
WORKING WITH CALLBACKS Ed Angel Professor of Computer Science, Electrical and Computer Engineering, and Media Arts University of New Mexico Angel: Interactive.
Fundamentals of Computer Graphics Part 3 prof.ing.Václav Skala, CSc. University of West Bohemia Plzeň, Czech Republic ©2002 Prepared with Angel,E.: Interactive.
Interaction with Graphics System
Input and Interaction Chapter 3. CS 480/680Chapter 3 -- Input and Interaction2 n Introduction: -We now turn to the development of interactive graphics.
Introduction to Programming 3D Applications CE Lecture 15 Input and interaction in 3D Environments.
School of Computer Science University of Seoul. 1. Interaction 2. Input Devices 3. Clients and Servers 4. Display Lists 5. Programming Event-Driven Input.
Input and Interaction Chapter 3. CS 480/680 2Chapter 3 -- Input and Interaction Introduction: Introduction: We now turn to the development of interactive.
1Computer Graphics Input and Interaction Lecture 8 John Shearer Culture Lab – space 2
CAP 4703 Computer Graphic Methods Prof. Roy Levow Lecture 3.
Input and Interaction Lecture No. 4.
Lecture 3 OpenGL.
1 Input and Interaction. 2 Input Devices Physical input devices Keyboard devices and pointing devices Logical input devices.
Computer Graphics I, Fall 2010 Input and Interaction.
Write a Simple Program with OpenGL & GLUT. Books OpenGL Programming Guide (Red-book) OpenGL Reference Manual (Blue-book) OpenGL Super Bible
1 Figures are extracted from Angel's book (ISBN x) The Human Visual System vs The Pinhole camera Human Visual System Visible Spectrum Pinhole.
Introduction to GL Geb Thomas. Example Code int main(int argc, char **argv) { glutInit(&argc, argv); glutInitDisplayMode ( GLUT_SINGLE | GLUT_RGB | GLUT_DEPTH);
CS 480/680 Computer Graphics Programming with Open GL Part 7: Input and Interaction Dr. Frederick C Harris, Jr. Fall 2011.
Interactive Computer Graphics CS 418 MP1: Dancing I TA: Zhicheng Yan Sushma S Kini Mary Pietrowicz Slides Taken from: “An Interactive Introduction to OpenGL.
Introduction to OpenGL and GLUT. What’s OpenGL? An Application Programming Interface (API) A low-level graphics programming API – Contains over 250 functions.
Program 2 due 02/01  Be sure to document your program  program level doc  your name  what the program does  each function  describe the arguments.
1 Input and Interaction. 2 Objectives Introduce the basic input devices ­Physical Devices ­Logical Devices ­Input Modes Event-driven input Introduce double.
Computer Graphics I, Fall 2010 Working with Callbacks.
Input and Interaction Yuanfeng Zhou Shandong University Software College 1.
University of New Mexico
GLUT functions glutInit allows application to get command line arguments and initializes system gluInitDisplayMode requests properties for the window.
Doç. Dr. Cemil Öz SAÜ Bilgisayar Mühendisliği Dr. Cemil Öz.
Chap 3 Viewing and Transformation
OpenGL Basic Drawing 2003 Spring Keng Shih-Ling
12/22/ :38 1 Comp 175C - Computer Graphics Dan Hebert Computer Graphics Comp 175 Chapter 3 Instructor: Dan Hebert.
CS559: Computer Graphics Lecture 12: OpenGL - Transformation Li Zhang Spring 2008.
1 Angel: Interactive Computer Graphics 4E © Addison-Wesley 2005 Input and Interaction Ed Angel Professor of Computer Science, Electrical and Computer Engineering,
31/1/2006Based on: Angel (4th Edition) & Akeine-Möller & Haines (2nd Edition)1 CSC345: Advanced Graphics & Virtual Environments Lecture 2: Introduction.
CS559: Computer Graphics Lecture 12: OpenGL: ModelView Li Zhang Spring 2010.
OpenGL Basic Drawing Jian-Liang Lin A Smidgen of OpenGL Code #include main() { InitializeAWindowPlease(); glClearColor (0.0, 0.0, 0.0, 0.0); glClear.
Introduction to Graphics Programming. Graphics API.
1 Angel: Interactive Computer Graphics 5E © Addison-Wesley 2009 Working with Callbacks.
CSC Graphics Programming Budditha Hettige Department of Statistics and Computer Science.
INTRODUCTION TO OPENGL
Review GLUT Callback Functions
Computer Graphics - Chapter 3 Input and Interaction
Working with Callbacks
CS5500 Computer Graphics March 2, 2006.
CSC461 Lecture 8: Input Devices
גרפיקה ממוחשבת: מבוא ל-OpenGL
Input and Interaction Chapter 3.
Input and Interactions
Working with Callbacks
PROGRAM 8 newpaint.c E. Angel.
Fundamentals of Computer Graphics Part 3
Input and Interaction Ed Angel
University of New Mexico
Input and Interaction Ed Angel
Input and Interaction Ed Angel Professor Emeritus of Computer Science,
Presentation transcript:

InteractionHofstra University1 Graphics Programming Input and Interaction

InteractionHofstra University2 Interaction Early 60’s, Ivan Sutherland’s Project Sketchpad Basic Paradigm: User see an image, reacts with an interactive device, image changes in response to input,...

InteractionHofstra University3 Interaction OpenGL does not support interaction directly Increase portability – work in a variety of environments Windowing and input functions left out of API – emphasis on rendering Use toolkits, GLUT

InteractionHofstra University4 Physical Input Devices Pointing Device – indicates position on screen Keyboard Device – return character codes to a program

InteractionHofstra University5 Logical Input Devices Major Characteristics: What measurements the device returns to the program When the device returns those measurements

InteractionHofstra University6 Application Input Measure - what the device returns to the program Trigger – signal send to the computer Three distinct modes defined by the relationship between the measure process and the trigger. Request Mode, Sample Mode, Event Mode

InteractionHofstra University7 Request Mode The measure of the device is not returned to the program until the device is triggered

InteractionHofstra University8 Sample Mode Measure is returned immediately after the function is called in the user program (device sample). No trigger needed Useful in apps where the program guides the user

InteractionHofstra University9 Event Mode Can handle multiple inputs When device triggered an event is generated Identifier for device placed in the event queue Event queue process is independent of the application, asynchronous A callback function associated with a specific type of event

InteractionHofstra University10 Event-Driven Programming Callback functions implement how the application program responds to events Examples, each of the events below needs a callback function to handle it. Pointing Events Window Events Keyboard Events Display & Idle Events

InteractionHofstra University11 Pointing Device Almost always a mouse Move event – when mouse is moved with button depressed; Passive Move Event – move without pressing button Mouse Event – mouse button is depressed or released glutMouseFunc (mouse);

InteractionHofstra University12 Pointing Device – Mouse Callback void mouse(int btn, int state, int x, int y) { if (btn==GLUT_RIGHT_BUTTON && state==GLUT_DOWN) exit(0); } Depressing the right Button terminates the program

InteractionHofstra University13 Register callbacks int main(int argc, char** argv) { glutInit(&argc,argv); glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB); glutCreateWindow("square"); myinit (); glutReshapeFunc (myReshape); glutMouseFunc (mouse); glutMotionFunc(drawSquare); glutDisplayFunc(display); glutMainLoop(); } Called whenever the window is resized

InteractionHofstra University14 Window Events (Resizing – Dragging) Redraw all the objects? How do we handle aspect ratio? Change size of attributes and primitives?

InteractionHofstra University15 Square Program Example This program illustrates the use of the glut library for interfacing with a Window System The program opens a window, clears it to black,then draws a box at the location of the mouse each time the left button is clicked. The right button exits the program The program also reacts correctly when the window is moved or resized by clearing the new window to black

InteractionHofstra University16 Global Variables Size of window Viewport position and size Size of clipping window /* globals */ GLsizei wh = 500, ww = 500; /* initial window size */ GLfloat size = 3.0; /* half side length of square */

InteractionHofstra University17 Window Event – Reshape Example: change clipping wndw to match screen wndw, viewport matches new aspect ratio, whole screen wndw void myReshape(GLsizei w, GLsizei h) { /* adjust clipping box */ glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(0.0, (GLdouble)w, 0.0, (GLdouble)h, -1.0, 1.0); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); /* adjust viewport and clear */ glViewport(0,0,w,h); glClearColor (0.0, 0.0, 0.0, 1.0); glClear(GL_COLOR_BUFFER_BIT); glFlush(); /* set global size for use by drawing routine */ ww = w; wh = h; } reshaping routine called with glutReshapeFunc (myReshape); whenever window is resized or moved

InteractionHofstra University18 Pointing Device – Motion Callback Example: whenever mouse dragged and button down draw random color square at the mouse position void drawSquare(int x, int y) { y=wh-y; glColor3ub( (char) rand()%256, (char) rand()%256, (char) rand()%256); glBegin(GL_POLYGON); glVertex2f(x+size, y+size); glVertex2f(x-size, y+size); glVertex2f(x-size, y-size); glVertex2f(x+size, y-size); glEnd(); glFlush(); } Called with glutMotionFunc(drawSquare); if button held down

InteractionHofstra University19 Keyboard Events void keyboard(unsigned char key, int x, int y) { if (key=='q' || key=='Q') exit(0); } glutKeyboardFunc(keyboard);

InteractionHofstra University20 Window Management id=glutCreateWindow(“second window”); glutSetWindow(id);

InteractionHofstra University21 Menus Pop-up menus Common Steps: Define the entries Link the menu to a mouse button Define callback function

InteractionHofstra University22 Registering a menu callback and defining a menu glutCreateMenu(demo_menu); glutAddMenuEntry(“quit”, 1); glutAddMenuEntry(“increase square size”, 2); glutAddMenuEntry(“decrease square size”, 3); glutAttachMenu(GLUT_RIGHT_BUTTON); demo_menu is the callback function for the menu The menu appears on right-button mouse click identifier passed to callback

InteractionHofstra University23 Menus void demo_menu(int id) { if (id==1) exit (0); if (id==2) size = 2* size; else if (size > 1) size = size/2; glutPostRedisplay( ); }

InteractionHofstra University24 Hierarchical Menus top_menu size_menu

InteractionHofstra University25 Hierarchical Menus GLint sub_menu = glutCreateMenu(size_menu); glutAddMenuEntry(“increase square size”, 1); glutAddMenuEntry(“decrease square size”, 2); glutCreateMenu(top_menu); glutAddMenuEntry(“quit”, 1); glutAddSubMenu(“Resize”, sub_menu); glutAttachMenu(GLUT_RIGHT_BUTTON); top_menu and size_menu are callback functions for the top- and the sub-menus, respectively

InteractionHofstra University26 Picking Picking – identify an object on the display Don’t return an x,y position, pick an “object” NOT an easy process Two methods: selection and bounding rectangles.

InteractionHofstra University27 Selection Adjusting the clipping region and viewport to keep track of which primitives in a small clipping region are rendered into a region near the cursor. Primitives are entered into a hit list to be examined by the user program later on.

InteractionHofstra University28 Animation: Using idle callback and double buffering Example Rotating Cube Program We want to create animation We continuously keep changing the value of

InteractionHofstra University29 Spin the square: globals #define PI GLdouble theta = 0; // rotation angle GLsizei wnd_w = 500; // display window width GLsizei wnd_h = 500; // display window height GLfloat spin_speed = PI/180; // incerement for angle in rad

InteractionHofstra University30 Spin square: prototypes void help(); //print instructions void myinit(); // OpenGL init void display(); // display callback void myreshape(GLsizei, GLsizei); // reshape callback void update_angle(); // idle callback void control_speed(GLubyte, GLint, GLint); // keybrd callback

InteractionHofstra University31 Spin square: reshape callback /* keep the viewport aspect ratio 1, so square does not get distorted */ void myreshape(GLsizei w, GLsizei h) { wnd_w = w; wnd_h = h; if (h < w) w=h; // adjust viewport (to preserve aspect ratio 1), and clear. glViewport(0, 0, w, w); glutPostRedisplay(); }

InteractionHofstra University32 Spin square: keyboard callback // keyboard callback increase speed, decrease speed or quit void control_speed(GLubyte key, GLint x, GLint y) { switch (key) { case('q'): case('Q'): exit (0); break; case('s'): case('S'): spin_speed *=2; break; case('d'): case( 'D'): spin_speed /= 2; } glutPostRedisplay( ); }

InteractionHofstra University33 Spin square: idle callback // idle callback void update_angle(void) { theta += spin_speed; if (theta>2*PI) theta-= 2*PI; glutPostRedisplay(); } glutIdleFunc(update_angle);

InteractionHofstra University34 Double Buffering A complex display may not be drawn in a single refresh cycle Double Buffering solves the problem Assume two frame buffers: front buffer and back buffer Swap these from the application program invoking a display callback

InteractionHofstra University35 Double Buffering void display(void) { /* display callback, clear frame buffer and z buffer, */ /* rotate cube and draw, swap buffers */ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);... glRotatef(theta[2], 0.0, 0.0, 1.0); colorcube(); glFlush(); glutSwapBuffers(); } glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB); Updating back buffer and swapping

InteractionHofstra University36 Spin square: double buffering void display() { glClear(GL_COLOR_BUFFER_BIT); glBegin(GL_POLYGON); glColor3f(1.0, 0.0, 0.0); glVertex2d(cos(theta), sin(theta)); glColor3f(0.0, 0.1, 0.0); glVertex2d(-sin(theta), cos(theta)); glColor3f(1.0, 0.0, 1.0); glVertex2d(-cos(theta), -sin(theta)); glColor3f(1.0, 1.0, 0.0); glVertex2d(sin(theta), -cos(theta)); glEnd(); glutSwapBuffers(); }

InteractionHofstra University37 Spin square: register callbacks int main(int argc, char **argv) { glutInit(&argc, argv); glutInitDisplayMode(GLUT_DOUBLE|GLUT_RGB); glutInitWindowSize(wnd_w,wnd_h); glutInitWindowPosition(0,0); glutCreateWindow("spinning square, speed control with menu"); myinit(); glutDisplayFunc(display); glutReshapeFunc(myreshape); glutIdleFunc(update_angle); glutKeyboardFunc(control_speed); glutMainLoop(); return 0; }

InteractionHofstra University38 Good Interactive Programs Smooth display Interactive devices Variety of methods to input data Easy-to-use interface Feedback to user (help) Human consideration (HCI)