OpenGL ES 1.0 Android Developers

Similar documents
An Introduction to 3D Computer Graphics, Stereoscopic Image, and Animation in OpenGL and C/C++ Fore June

Android and OpenGL. Android Smartphone Programming. Matthias Keil. University of Freiburg

Computer Graphics on Mobile Devices VL SS ECTS

How to develop your own app

Introduction to NaviGenie SDK Client API for Android

ELET4133: Embedded Systems. Topic 15 Sensors

Android Sensor Programming. Weihong Yu

Sensors & Motion Sensors in Android platform. Minh H Dang CS286 Spring 2013

Chapter 2 - Graphics Programming with JOGL

Arduino & Android. A How to on interfacing these two devices. Bryant Tram

Silverlight for Windows Embedded Graphics and Rendering Pipeline 1

Android Sensors. CPRE 388 Fall 2015 Iowa State University

Android Java Live and In Action

Mobile App Sensor Documentation (English Version)

Android Basics. Xin Yang

MMI 2: Mobile Human- Computer Interaction Android

If you know exactly how you want your business forms to look and don t mind

Getting Started: Creating a Simple App

Affdex SDK for Windows!

Snap to It with CorelDRAW 12! By Steve Bain

IOIO for Android Beginners Guide Introduction

An Introduction to Android Application Development. Serdar Akın, Haluk Tüfekçi

! Sensors in Android devices. ! Motion sensors. ! Accelerometer. ! Gyroscope. ! Supports various sensor related tasks

CREATE A 3D MOVIE IN DIRECTOR

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine

Using Extensions or Cordova Plugins in your RhoMobile Application Darryn

ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL I)

TRIGONOMETRY FOR ANIMATION

Objective. Android Sensors. Sensor Manager Sensor Types Examples. Page 2

Android Framework. How to use and extend it

GearVRf Developer Guide

OpenGL & Delphi. Max Kleiner. 1/22

Obsoleted chapter from The Busy Coder's Guide to Advanced Android Development

Android Environment SDK

Rapid Android Development

How to build your first Android Application in Windows

How To Teach Computer Graphics

Microsoft Picture Manager. Picture Manager

Making a Triangle Twist Foundation in EQ5

4D Interactive Model Animations

Dashboard Skin Tutorial. For ETS2 HTML5 Mobile Dashboard v3.0.2

Lecture 1 Introduction to Android

My Custom Design ver.1.0

How to resize, rotate, and crop images

Android Sensors. XI Jornadas SLCENT de Actualización Informática y Electrónica

ADMINISTRATORS GUIDE EPISUITE 6

February 23, 2011 AUG Android mobile technology platform 3.0. Android User s Guide

WEARIT DEVELOPER DOCUMENTATION 0.2 preliminary release July 20 th, 2013

Android. Learning Android Marko Gargenta. Tuesday, March 11, 14

AD SPECIFICATIONS. Standard Banners. Site Served. Creative. Animation DAA Ad Marker * Raw Assets Delivery. Availability. Metrics

Input and Interaction

Creating a Poster in PowerPoint A. Set Up Your Poster

Android Security Lab WS 2014/15 Lab 1: Android Application Programming

Grade 7/8 Math Circles November 3/4, M.C. Escher and Tessellations

Color correction in 3D environments Nicholas Blackhawk

PowerPoint 2007 Basics Website:

Mobile Application Development Android

Android Programming: 2D Drawing Part 1: Using ondraw

USEFUL HINTS & TIPS ALCATEL ONE TOUCH 993. better BUSINESS

Now that we have the Android SDK, Eclipse and Phones all ready to go we can jump into actual Android development.

Introduction to scripting with Unity

Image Processing and Computer Graphics. Rendering Pipeline. Matthias Teschner. Computer Science Department University of Freiburg

Android Development. 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系

Android Development. Marc Mc Loughlin

2. Click the download button for your operating system (Windows, Mac, or Linux).

Plotting: Customizing the Graph

Chapter 9 Slide Shows

Creating an invitation

Chapter 2 Getting Started

L20: GPU Architecture and Models

ZoomText 10.1 for Windows 8 Quick Reference Guide Addendum

LESSON 7: IMPORTING AND VECTORIZING A BITMAP IMAGE

Graphics Input Primitives. 5. Input Devices Introduction to OpenGL. String Choice/Selection Valuator

Writer Guide. Chapter 15 Using Forms in Writer

Grade 1 Geometric Shapes Conceptual Lessons Unit Outline Type of Knowledge & SBAC Claim Prerequisite Knowledge:

Quick Start Tutorial Imperial version

Adding Animation With Cinema 4D XL

The mouse callback. Positioning. Working with Callbacks. Obtaining the window size. Objectives

Suggested Application Options Settings for Autodesk Inventor

A Guide to Microsoft Paint (Windows XP)

JVC CAM Control (for ipad) User Guide

SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9

Cabri Geometry Application User Guide

ECWM511 MOBILE APPLICATION DEVELOPMENT Lecture 1: Introduction to Android

StructureScan 3D. User Guide ENGLISH.

Sense. 3D Scanner. User Guide

Performance Optimization and Debug Tools for mobile games with PlayCanvas

How To Develop Android On Your Computer Or Tablet Or Phone

Creating Forms With Adobe LiveCycle Designer 8.2

Android Programming Family Fun Day using AppInventor

3D Viewer. user's manual _2

5. Tutorial. Starting FlashCut CNC

Android For Java Developers. Marko Gargenta Marakana

Introduction to SketchUp

Tutorials. If you have any questions, comments, or suggestions about these lessons, don't hesitate to contact us at

SMART Board Training Packet. Notebook Software 10.0

Hypercosm. Studio.

Creating a List UI with Android. Michele Schimd

App Development for Smart Devices. Lec #2: Android Tools, Building Applications, and Activities

To Install EdiView IP camera utility on Android device, follow the following instructions:

Transcription:

Tutorials: OpenGL ES 1.0 This tutorial shows you how to create a simple Android application that uses the OpenGL ES 1.0 API to perform some basic graphics operations. You'll learn how to: Create an activity using GLSurfaceView and GLSurfaceView.Renderer Create and draw a graphic object Define a projection to correct for screen geometry Define a camera view Rotate a graphic object Make graphics touch-interactive The Android framework supports both the OpenGL ES 1.0/1.1 and OpenGL ES 2.0 APIs. You should carefully consider which version of the OpenGL ES API (1.0/1.1 or 2.0) is most appropriate for your needs. For more information, see Choosing an OpenGL API Version. If you would prefer to use OpenGL ES 2.0, see the OpenGL ES 2.0 tutorial. In this document Create an Activity with GLSurfaceView Draw a Shape on GLSurfaceView Define a Triangle Draw the Triangle Apply Projection and Camera Views Add Motion Respond to Touch Events Related Samples API Demos - graphics OpenGL ES 1.0 Sample TouchRotateActivity See also 3D with OpenGL OpenGL ES 2.0 Before you start, you should understand how to create a basic Android application. If you do not know how to create an app, follow the Hello World Tutorial to familiarize yourself with the process. Create an Activity with GLSurfaceView To get started using OpenGL, you must implement both a GLSurfaceView and a GLSurfaceView.Renderer. The GLSurfaceView is the main view type for applications that use OpenGL and the GLSurfaceView.Renderer controls what is drawn within that view. (For more information about these classes, see the 3D with OpenGL document.) To create an activity using GLSurfaceView: 1. Start a new Android project that targets Android 1.6 (API Level 4) or higher. 2. Name the project HelloOpenGLES10 and make sure it includes an activity called HelloOpenGLES10. 3. Modify the HelloOpenGLES10 class as follows: package com.example.android.apis.graphics; import android.app.activity; import android.content.context; import android.opengl.glsurfaceview; Page 1 of 9

import android.os.bundle; public class HelloOpenGLES10 extends Activity { private GLSurfaceView mglview; @Override public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); // Create a GLSurfaceView instance and set it // as the ContentView for this Activity. mglview = new HelloOpenGLES10SurfaceView(this); setcontentview(mglview); @Override protected void onpause() { super.onpause(); // The following call pauses the rendering thread. // If your OpenGL application is memory intensive, // you should consider de-allocating objects that // consume significant memory here. mglview.onpause(); @Override protected void onresume() { super.onresume(); // The following call resumes a paused rendering thread. // If you de-allocated graphic objects for onpause() // this is a good place to re-allocate them. mglview.onresume(); class HelloOpenGLES10SurfaceView extends GLSurfaceView { public HelloOpenGLES10SurfaceView(Context context){ super(context); // Set the Renderer for drawing on the GLSurfaceView setrenderer(new HelloOpenGLES10Renderer()); Note: You will get a compile error for the HelloOpenGLES10Renderer class reference. That's expected; you will fix this error in the next step. As shown above, this activity uses a single GLSurfaceView for its view. Notice that this activity implements crucial lifecycle callbacks for pausing and resuming its work. The HelloOpenGLES10SurfaceView class in this example code above is just a thin wrapper for an instance of GLSurfaceView and is not strictly necessary for this example. However, if you want your application to monitor and Page 2 of 9

respond to touch screen events and we are guessing you do you must extend GLSurfaceView to add touch event listeners, which you will learn how to do in the Reponding to Touch Events section. In order to draw graphics in the GLSurfaceView, you must define an implementation of GLSurfaceView.Renderer. In the next step, you create a renderer class to complete this OpenGL application. 4. Create a new file for the following class HelloOpenGLES10Renderer, which implements the GLSurfaceView.Renderer interface: package com.example.android.apis.graphics; import javax.microedition.khronos.egl.eglconfig; import javax.microedition.khronos.opengles.gl10; import android.opengl.glsurfaceview; public class HelloOpenGLES10Renderer implements GLSurfaceView.Renderer { public void onsurfacecreated(gl10 gl, EGLConfig config) { // Set the background frame color gl.glclearcolor(0.5f, 0.5f, 0.5f, 1.0f); public void ondrawframe(gl10 gl) { // Redraw background color gl.glclear(gl10.gl_color_buffer_bit GL10.GL_DEPTH_BUFFER_BIT); public void onsurfacechanged(gl10 gl, int width, int height) { gl.glviewport(0, 0, width, height); This minimal implementation of GLSurfaceView.Renderer provides the code structure needed to use OpenGL drawing methods: onsurfacecreated() is called once to set up the GLSurfaceView environment. ondrawframe() is called for each redraw of the GLSurfaceView. onsurfacechanged() is called if the geometry of the GLSurfaceView changes, for example when the device's screen orientation changes. For more information about these methods, see the 3D with OpenGL document. The code example above creates a simple Android application that displays a grey screen using OpenGL ES 1.0 calls. While this application does not do anything very interesting, by creating these classes, you have layed the foundation needed to start drawing graphic elements with OpenGL ES 1.0. If you are familiar with the OpenGL ES APIs, these classes should give you enough information to use the OpenGL ES 1.0 API and create graphics. However, if you need a bit more help getting started with OpenGL, head on to the next sections for a few more hints. Draw a Shape on GLSurfaceView Page 3 of 9

Once you have implemented a GLSurfaceView.Renderer, the next step is to draw something with it. This section shows you how to define and draw a triangle. Define a Triangle OpenGL allows you to define objects using coordinates in three-dimensional space. So, before you can draw a triangle, you must define its coordinates. In OpenGL, the typical way to do this is to define a vertex array for the coordinates. By default, OpenGL ES assumes a coordinate system where [0,0,0] (X,Y,Z) specifies the center of the GLSurfaceView frame, [1,1,0] is the top right corner of the frame and [-1,-1,0] is bottom left corner of the frame. To define a vertex array for a triangle: 1. In your HelloOpenGLES10Renderer class, add new member variable to contain the vertices of a triangle shape: private FloatBuffer trianglevb; 2. Create a method, initshapes() which populates this member variable: private void initshapes(){ float trianglecoords[] = { // X, Y, Z -0.5f, -0.25f, 0, 0.5f, -0.25f, 0, 0.0f, 0.559016994f, 0 ; // initialize vertex Buffer for triangle ByteBuffer vbb = ByteBuffer.allocateDirect( // (# of coordinate values * 4 bytes per float) trianglecoords.length * 4); vbb.order(byteorder.nativeorder());// use the device hardware's native byte order trianglevb = vbb.asfloatbuffer(); // create a floating point buffer from the ByteBuffer trianglevb.put(trianglecoords); // add the coordinates to the FloatBuffer trianglevb.position(0); // set the buffer to read the first coordinate This method defines a two-dimensional triangle with three equal sides. 3. Modify your onsurfacecreated() method to initialize your triangle: public void onsurfacecreated(gl10 gl, EGLConfig config) { // Set the background frame color gl.glclearcolor(0.5f, 0.5f, 0.5f, 1.0f); // initialize the triangle vertex array initshapes(); Page 4 of 9

Caution: Shapes and other static objects should be initialized once in your onsurfacecreated() method for best performance. Avoid initializing the new objects in ondrawframe(), as this causes the system to re-create the objects for every frame redraw and slows down your application. You have now defined a triangle shape, but if you run the application, nothing appears. What?! You also have to tell OpenGL to draw the triangle, which you'll do in the next section. Draw the Triangle Before you can draw your triangle, you must tell OpenGL that you are using vertex arrays. After that setup step, you can call the drawing APIs to display the triangle. To draw the triangle: 1. Add the glenableclientstate() method to the end of onsurfacecreated() to enable vertex arrays. // Enable use of vertex arrays gl.glenableclientstate(gl10.gl_vertex_array); At this point, you are ready to draw the triangle object in the OpenGL view. 2. Add the following code to the end of your ondrawframe() method to draw the triangle. // Draw the triangle gl.glcolor4f(0.63671875f, 0.76953125f, 0.22265625f, 0.0f); gl.glvertexpointer(3, GL10.GL_FLOAT, 0, trianglevb); gl.gldrawarrays(gl10.gl_triangles, 0, 3); 3. Run the app! Your application should look something like this: Figure 1. Triangle drawn without a projection or camera view. There are a few problems with this example. First of all, it is not going to impress your friends. Secondly, the triangle is a bit squashed and changes shape when you change the screen orientation of the device. The reason the shape is skewed is due to the fact that the object is being rendered in a frame which is not perfectly square. You'll fix that problem using a projection and camera view in the next section. Page 5 of 9

Lastly, because the triangle is stationary, the system is redrawing the object repeatedly in exactly the same place, which is not the most efficient use of the OpenGL graphics pipeline. In the Add Motion section, you'll make this shape rotate and justify this use of processing power. Apply Projection and Camera View One of the basic problems in displaying graphics is that Android device displays are typically not square and, by default, OpenGL happily maps a perfectly square, uniform coordinate system onto your typically non-square screen. To solve this problem, you can apply an OpenGL projection mode and camera view (eye point) to transform the coordinates of your graphic objects so they have the correct proportions on any display. For more information about OpenGL coordinate mapping, see Mapping Coordinates for Drawn Objects. To apply projection and camera view transformations to your triangle: 1. Modify your onsurfacechanged() method to enable GL10.GL_PROJECTION mode, calculate the screen ratio and apply the ratio as a transformation of the object coordinates. public void onsurfacechanged(gl10 gl, int width, int height) { gl.glviewport(0, 0, width, height); state // make adjustments for screen ratio float ratio = (float) width / height; gl.glmatrixmode(gl10.gl_projection); gl.glloadidentity(); // set matrix to projection mode // reset the matrix to its default gl.glfrustumf(-ratio, ratio, -1, 1, 3, 7); // apply the projection matrix 2. Next, modify your ondrawframe() method to apply the GL_MODELVIEW mode and set a view point using GLU.gluLookAt(). public void ondrawframe(gl10 gl) { // Redraw background color gl.glclear(gl10.gl_color_buffer_bit GL10.GL_DEPTH_BUFFER_BIT); // Set GL_MODELVIEW transformation mode gl.glmatrixmode(gl10.gl_modelview); gl.glloadidentity(); // reset the matrix to its default state // When using GL_MODELVIEW, you must set the view point GLU.gluLookAt(gl, 0, 0, -5, 0f, 0f, 0f, 0f, 1.0f, 0.0f); // Draw the triangle... 3. Run the updated application and you should see something like this: Page 6 of 9

Figure 2. Triangle drawn with a projection and camera view applied. Now that you have applied this transformation, the triangle has three equal sides, instead of the squashed triangle in the earlier version. Add Motion While it may be an interesting exercise to create static graphic objects with OpenGL ES, chances are you want at least some of your objects to move. In this section, you'll add motion to your triangle by rotating it. To add rotation to your triangle: 1. Modify your ondrawframe() method to rotate the triangle object: public void ondrawframe(gl10 gl) {... // When using GL_MODELVIEW, you must set the view point GLU.gluLookAt(gl, 0, 0, -5, 0f, 0f, 0f, 0f, 1.0f, 0.0f); // Create a rotation for the triangle long time = SystemClock.uptimeMillis() % 4000L; float angle = 0.090f * ((int) time); gl.glrotatef(angle, 0.0f, 0.0f, 1.0f); // Draw the triangle... 2. Run the application and your triangle should rotate around its center. Respond to Touch Events Making objects move according to a preset program like the rotating triangle is useful for getting some attention, but what if Page 7 of 9

you want to have users interact with your OpenGL graphics? In this section, you'll learn how listen for touch events to let users interact with objects in your HelloOpenGLES10SurfaceView. The key to making your OpenGL application touch interactive is expanding your implementation of GLSurfaceView to override the ontouchevent() to listen for touch events. Before you do that, however, you'll modify the renderer class to expose the rotation angle of the triangle. Afterwards, you'll modify the HelloOpenGLES10SurfaceView to process touch events and pass that data to your renderer. To make your triangle rotate in response to touch events: 1. Modify your HelloOpenGLES10Renderer class to include a new, public member so that your HelloOpenGLES10SurfaceView class is able to pass new rotation values your renderer: public float mangle; 2. In your ondrawframe() method, comment out the code that generates an angle and replace the angle variable with mangle. // Create a rotation for the triangle (Boring! Comment this out:) // long time = SystemClock.uptimeMillis() % 4000L; // float angle = 0.090f * ((int) time); // Use the mangle member as the rotation value gl.glrotatef(mangle, 0.0f, 0.0f, 1.0f); 3. In your HelloOpenGLES10SurfaceView class, add the following member variables. private final float TOUCH_SCALE_FACTOR = 180.0f / 320; private HelloOpenGLES10Renderer mrenderer; private float mpreviousx; private float mpreviousy; 4. In the constructor method for HelloOpenGLES10SurfaceView, set the mrenderer member so you have a handle to pass in rotation input and set the render mode to RENDERMODE_WHEN_DIRTY. public HelloOpenGLES10SurfaceView(Context context){ super(context); // set the mrenderer member mrenderer = new HelloOpenGLES10Renderer(); setrenderer(mrenderer); // Render the view only when there is a change setrendermode(glsurfaceview.rendermode_when_dirty); 5. In your HelloOpenGLES10SurfaceView class, override the ontouchevent() method to listen for touch events and pass them to your renderer. @Override public boolean ontouchevent(motionevent e) { // MotionEvent reports input details from the touch screen // and other input controls. In this case, you are only // interested in events where the touch position changed. Page 8 of 9

float x = e.getx(); float y = e.gety(); switch (e.getaction()) { case MotionEvent.ACTION_MOVE: float dx = x - mpreviousx; float dy = y - mpreviousy; // reverse direction of rotation above the mid-line if (y > getheight() / 2) { dx = dx * -1 ; // reverse direction of rotation to left of the mid-line if (x < getwidth() / 2) { dy = dy * -1 ; mrenderer.mangle += (dx + dy) * TOUCH_SCALE_FACTOR; requestrender(); mpreviousx = x; mpreviousy = y; return true; Note: Touch events return pixel coordinates which are not the same as OpenGL coordinates. Touch coordinate [0,0] is the bottom-left of the screen and the highest value [max_x, max_y] is the top-right corner of the screen. To match touch events to OpenGL graphic objects, you must translate touch coordinates into OpenGL coordinates. 6. Run the application and drag your finger or cursor around the screen to rotate the triangle. For another example of OpenGL touch event functionality, see TouchRotateActivity. " Back to Tutorials! Go to top Except as noted, this content is licensed under Creative Commons Attribution 2.5. For details and restrictions, see the Content License. Privacy & Terms - Brand Guidelines - Report Document Issues Page 9 of 9