Opengl Performer™ Programmer's Guide

Total Page:16

File Type:pdf, Size:1020Kb

Opengl Performer™ Programmer's Guide OpenGL Performer™ Programmer’s Guide 007-1680-060 CONTRIBUTORS Written by George Eckel and Ken Jones Edited by Rick Thompson and Susan Wilkening Illustrated by Chrystie Danzer and Chris Wengelski Production by Adrian Daley and Karen Jacobson Engineering contributions by Angus Dorbie, Tom Flynn, Yair Kurzion, Radomir Mech, Alexandre Naaman, Marcin Romaszewicz, Allan Schaffer, and Jenny Zhao COPYRIGHT © 1997, 2000 Silicon Graphics, Inc. All rights reserved; provided portions may be copyright in third parties, as indicated elsewhere herein. No permission is granted to copy, distribute, or create derivative works from the contents of this electronic documentation in any manner, in whole or in part, without the prior written permission of Silicon Graphics, Inc. LIMITED RIGHTS LEGEND The electronic (software) version of this document was developed at private expense; if acquired under an agreement with the USA government or any contractor thereto, it is acquired as "commercial computer software" subject to the provisions of its applicable license agreement, as specified in (a) 48 CFR 12.212 of the FAR; or, if acquired for Department of Defense units, (b) 48 CFR 227-7202 of the DoD FAR Supplement; or sections succeeding thereto. Contractor/manufacturer is Silicon Graphics, Inc., 1600 Amphitheatre Pkwy 2E, Mountain View, CA 94043-1351. TRADEMARKS AND ATTRIBUTIONS Silicon Graphics,IRIS, IRIS Indigo, IRIX, ImageVision Library, Indigo, Indy, InfiniteReality, Onyx, OpenGL, are registered trademarks, SGI, and CASEVision, Crimson, Elan Graphics, IRIS Geometry Pipeline, IRIS GL, IRIS Graphics Library, IRIS InSight, IRIS Inventor, Indigo Elan, Indigo2, InfiniteReality2, OpenGL Performer, Personal IRIS, POWER Series, Performance Co-Pilot, RealityEngine, RealityEngine2, SGI logo, and Showcase are trademarks of Silicon Graphics, Inc. AutoCAD is a registered trademark of Autodesk, Inc. DrAW Computing Associates is a trademark of DrAW Computing Associates. Linux is a registered trademark of Linus Torvalds. Motif is a registered trademark of Open Software Foundation. Netscape is a trademark of Netscape Communications Corp. Purify is a registered trademark of Rational Software Corporation. WindView is a trademark of Wind River Systems. X Window System is a trademark of Massachusetts Institute of Technology. PATENT DISCLOSURE Many of the techniques and methods disclosed in this Programmer’s Guide are covered by patents held by Silicon Graphics including U.S. Patent Nos. 5,051,737; 5,369,739; 5,438,654; 5,394,170; 5,528,737; 5,528,738; 5,581,680; 5,471,572 and patent applications pending. We encourage you to use these features in your OpenGL Performer application on SGI systems. This functionality and OpenGL Performer are not available for re-implementation and distribution on other platforms without the explicit permission of Silicon Graphics. New Features in This Guide The 2.4 version of OpenGL Performer contains the following new features: • Product name has been changed from IRIS Performer to OpenGL Performer. • OpenGL Performer interfaces only with the OpenGL graphics library. Unlike IRIS Performer, it does not use the IRIS GL library. • OpenGL Performer runs on both the IRIX and Linux operating systems. • Multi-texture support. • Multiprocessing enhancements. • pfFlux enhancements. • pfShader. • Double-precision DCS support. • pfLOD enhancements. • Volume fog. • Anisotrophic filtering. 007-1680-060 iii Record of Revision Version Description 001 1997 Original publication. 002 November 2000 Updated for the 2.4 version of OpenGL Performer. 007-1680-060 v Contents Examples . xxvii Figures . xxxi Tables . xxxv About This Guide. xxxix Why Use OpenGL Performer? . xxxix What You Should Know Before Reading This Guide . xl How to Use This Guide . xl What This Guide Contains . xl Sample Applications . xlii Conventions . xlii Internet and Hardcopy Reading for the OpenGL Performer Series . xliii Bibliography . xliii Computer Graphics . xliii OpenGL Graphics Library . xliv X, Xt, IRIS IM, and Window Systems . xlv Visual Simulation . xlv Mathematics of Flight Simulation . xlvi Virtual Reality. xlvi Geometric Reasoning. xlvii Conference Proceedings . xlvii Survey Articles in Magazines . xlviii Obtaining Publications . xlviii Reader Comments . xlviii 007-1680-060 vii Contents 1. OpenGL Performer Programming Interface . 1 General Naming Conventions . 1 Prefixes . 1 Header Files . 2 Naming in C and C++. 2 Abbreviations . 3 Macros, Tokens, and Enums . 3 Class API . 3 Object Creation. 3 Set Routines . 4 Get Routines . 4 Action Routines . 5 Enable and Disable of Modes . 5 Mode, Attribute, or Value . 6 Base Classes . 6 Inheritance Graph . 7 libpr and libpf Objects . 10 User Data . 10 pfDelete() and Reference Counting . 11 Copying Objects with pfCopy() . 15 Printing Objects with pfPrint() . 15 Determining Object Type . 17 2. Setting Up the Display Environment . 19 Using Pipes . 21 The Functional Stages of a Pipeline . 21 Creating and Configuring a pfPipe . 23 Example of pfPipe Use . 24 viii 007-1680-060 Contents Using Channels . 26 Creating and Configuring a pfChannel . 26 Setting Up a Scene . 27 Setting Up a Viewport . 27 Setting Up a Viewing Frustum . 28 Setting Up a Viewpoint . 30 Example of Channel Use . 32 Controlling the Video Output . 34 Using Multiple Channels . 35 One Window per Pipe, Multiple Channels per Window. 36 Using Channel Groups . 40 Multiple Channels and Multiple Windows . 43 3. Nodes and Node Types . 45 Nodes . 45 Attribute Inheritance . 45 pfNode . 47 pfGroup . 49 Working with Nodes . 52 Instancing . 52 Bounding Volumes . 55 007-1680-060 ix Contents Node Types . 57 pfScene Nodes . 57 pfSCS Nodes . 58 pfDCS Nodes . 58 pfFCS Nodes . 59 pfDoubleSCS Nodes . 60 pfDoubleDCS Nodes . 60 pfDoubleFCS Nodes . 63 pfSwitch Nodes . 63 pfSequence Nodes . 63 pfLOD Nodes . 66 pfASD Nodes . 66 pfLayer Nodes . 66 pfGeode Nodes . 67 pfText Nodes . 69 pfBillboard Nodes . 71 pfPartition Nodes . 74 Sample Program . 76 4. Database Traversal . 81 Scene Graph Hierarchy . 83 Database Traversals . 83 State Inheritance . 83 Database Organization . 84 Application Traversal . 84 Cull Traversal . 86 Traversal Order . 86 Visibility Culling . 87 Organizing a Database for Efficient Culling . 90 Sorting the Scene . 93 Paths through the Scene Graph . 95 Draw Traversal . 96 x 007-1680-060 Contents Controlling and Customizing Traversals . 96 pfChannel Traversal Modes . 96 pfNode Draw Mask . 97 pfNode Cull and Draw Callbacks . 97 Process Callbacks . .101 Process Callbacks and Passthrough Data . .103 Intersection Traversal . .105 Testing Line Segment Intersections . .105 Intersection Requests: pfSegSets . .106 Intersection Return Data: pfHit Objects . .106 Intersection Masks . .107 Discriminator Callbacks . .109 Line Segment Clipping . .110 Traversing Special Nodes . .110 Picking . .111 Performance . .111 Intersection Methods for Segments . .112 5. Frame and Load Control . .115 Frame-Rate Management . .115 Selecting the Frame Rate . .116 Achieving the Frame Rate . .116 Fixing the Frame Rate . .117 Level-of-Detail Management . .122 Level-of-Detail Models . .122 Level-of-Detail States . .126 Level-of-Detail Range Processing . ..
Recommended publications
  • Introduction Physics Engines AGEIA Physx SDK AGEIA
    25/3/2008 SVR2007 Introduction Tutorial AGEIA PhysX • What does physics give? – Real world interaction metaphor – Realistic simulation Virtual Reality • Who needs physics? and Multimedia { mouse, ds2, gsm, masb, vt, jk } @cin.ufpe.br Research Group Thiago Souto Maior – Immersive games and applications Daliton Silva Guilherme Moura Márcio Bueno • How to use this? Veronica Teichrieb Judith Kelner – Through physics engines implemented in software or hardware Petrópolis, May 2007 Physics Engines AGEIA PhysX SDK • Simplified Newtonian models • Based upon NovodeX API • “High precision” versus “real time” simulations • Commercial and open source engines • Middleware concept • What comes together in a physics engine? • First asynchronous physics API – Mandatory • Tons of math calculations • Takes advantage of multiprocessing game • Collision detection • Rigid body dynamics systems – Optional • Fluid dynamics • Cloth simulation • Particle systems • Deformable object dynamics AGEIA PhysX SDK AGEIA PhysX SDK • Supports game • Integration with game development life cycle engines – 3DSMax and Maya – Unreal Engine 3.0 plugins (PhysX – Emergent GameBryo Create) – Natural Motion – Properties tuning with Endorphin PhysX Rocket • Runs in PC, Xbox 360 – Visual remote and PS3 debugging with PhysX VRD 1 25/3/2008 AGEIA PhysX SDK AGEIA PhysX Processor • Supports • AGEIA PhysX PPU – Complex rigid body dynamics • Powerful PPU + – Collision detection CPU + GPU – Joints and springs – Physics + Math + – Volumetric fluid simulation Fast Rendering – Particle systems
    [Show full text]
  • (12) United States Patent (10) Patent No.: US 7,133,041 B2 Kaufman Et Al
    US007133041B2 (12) United States Patent (10) Patent No.: US 7,133,041 B2 Kaufman et al. (45) Date of Patent: Nov. 7, 2006 (54) APPARATUS AND METHOD FOR VOLUME (56) References Cited PROCESSING AND RENDERING U.S. PATENT DOCUMENTS (75) Inventors: Arie E. Kaufman, Plainview, NY (US); 4,314,351 A 2f1982 Postel et al. Ingmar Bitter, Lake Grove, NY (US); 4,371,933 A 2, 1983 Bresenham et al. Frank Dachille, Amityville, NY (US); Kevin Kreeger, East Setauket, NY (Continued) (US); Baoquan Chen, Maple Grove, FOREIGN PATENT DOCUMENTS MN (US) EP O 216 156 A2 4f1987 (73) Assignee: The Research Foundation of State University of New York, Albany, NY (Continued) (US) OTHER PUBLICATIONS (*) Notice: Subject to any disclaimer, the term of this Knittel, G., TriangleCaster: extensions to 3D-texturing units for patent is extended or adjusted under 35 accelerated volume rendering, 1999, Proceedings of the ACM U.S.C. 154(b) by 742 days. SIGGRAPH/EUROGRAPHICS workshop on Graphics hardware, pp. 25-34.* (21) Appl. No.: 10/204,685 (Continued) PCT Fed: Feb. 26, 2001 (22) Primary Examiner Ulka Chauhan (86) PCT No.: PCT/USO1 (O6345 Assistant Examiner Said Broome (74) Attorney, Agent, or Firm Hoffmann & Baron, LLP S 371 (c)(1), (2), (4) Date: Jan. 9, 2003 (57) ABSTRACT (87) PCT Pub. No.: WOO1A63561 An apparatus and method for real-time Volume processing and universal three-dimensional rendering. The apparatus PCT Pub. Date: Aug. 30, 2001 includes a plurality of three-dimensional (3D) memory units; at least one pixel bus for providing global horizontal (65) Prior Publication Data communication; a plurality of rendering pipelines; at least one geometry bus; and a control unit.
    [Show full text]
  • Arxiv:2103.14589V2 [Math.GR] 16 Jun 2021
    FINITENESS PROPERTIES FOR RELATIVES OF BRAIDED HIGMAN–THOMPSON GROUPS RACHEL SKIPPER AND XIAOLEI WU Abstract. We study the finiteness properties of the braided Higman–Thompson group bVd,r(H) with labels in H ≤ Bd, and bFd,r(H) and bTd,r(H) with labels in H ≤ P Bd where Bd is the braid group with d strings and P Bd is its pure braid subgroup. We show that for all d ≥ 2 and r ≥ 1, the group bVd,r(H) (resp. bTd,r(H) or bFd,r(H)) is of type Fn if and only if H is. Our result in particular confirms a recent conjecture of Aroca and Cumplido. Introduction The family of Thompson’s groups and the many groups in the extended Thompson family have long been studied for their many interesting properties. Thompson’s group F is the first example of a type F∞, torsion-free group with infinite cohomological dimension [BG84] while Thompson’s groups T and V provided the first examples of finitely presented simple groups. More recently the braided and labeled braided Higman–Thompson groups have garnered attention in part due their connections with big mapping class groups. The braided version of Thompson’s group V , which we refer to here as bV , was first intro- duced independently by Brin and Dehornoy [Bri07], [Deh06]. Brady, Burillo, Cleary, and Stein introduced braided F , or bF . The groups bV and bF were shown to be finitely presented in [Bro06] and [BBCS08], respectively, and this was extended to show that both of these groups + + are of type F∞ in [BFM 16].
    [Show full text]
  • K-12 Workforce Development in Transportation Engineering at FIU (2012- Task Order # 005)
    K-12 Workforce Development in Transportation Engineering at FIU (2012- Task Order # 005) 2016 Final Report K-12 Workforce Development in Transportation Engineering at FIU (2012- Task Order # 005) Berrin Tansel, Ph.D., P.E., Florida International University August 2016 1 K-12 Workforce Development in Transportation Engineering at FIU (2012- Task Order # 005) This page is intentionally left blank. i K-12 Workforce Development in Transportation Engineering at FIU (2012- Task Order # 005) U.S. DOT DISCLAIMER The contents of this report reflect the views of the authors, who are responsible for the facts, and the accuracy of the information presented herein. This document is disseminated under the sponsorship of the U.S. Department of Transportation’s University Transportation Centers Program, in the interest of information exchange. The U.S. Government assumes no liability for the contents or use thereof. ACKNOWLEDGEMENT OF SPONSORSHIP This work was sponsored by a grant from the Southeastern Transportation Research, Innovation, Development and Education Center (STRIDE) at the University of Florida. The STRIDE Center is funded through the U.S. Department of Transportation’s University Transportation Centers Program. ii K-12 Workforce Development in Transportation Engineering at FIU (2012- Task Order # 005) TABLE OF CONTENTS ABSTRACT ...................................................................................................................................................... v CHAPTER 1: INTRODUCTION ........................................................................................................................
    [Show full text]
  • Avs Developer's Guide
    333333333 3333 AVS DEVELOPER'S 333333333333GUIDE Release 4 May, 1992 Advanced Visual Systems Inc.33333333 Part Number: 320-0013-02, Rev B NOTICE This document, and the software and other products described or referenced in it, are con®dential and proprietary products of Advanced Visual Systems Inc. (AVS Inc.) or its licensors. They are provided under, and are subject to, the terms and conditions of a written license agreement between AVS Inc. and its customer, and may not be transferred, disclosed or otherwise provided to third parties, unless otherwise permitted by that agreement. NO REPRESENTATION OR OTHER AFFIRMATION OF FACT CONTAINED IN THIS DOCUMENT, INCLUDING WITHOUT LIMITATION STATEMENTS REGARDING CAPACITY, PERFORMANCE, OR SUITABILITY FOR USE OF SOFTWARE DESCRIBED HEREIN, SHALL BE DEEMED TO BE A WARRANTY BY AVS INC. FOR ANY PURPOSE OR GIVE RISE TO ANY LIABILITY OF AVS INC. WHATSOEVER. AVS INC. MAKES NO WARRANTY OF ANY KIND IN OR WITH REGARD TO THIS DOCUMENT, INCLUDING BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. AVS INC. SHALL NOT BE RESPONSIBLE FOR ANY ERRORS THAT MAY APPEAR IN THIS DOCUMENT AND SHALL NOT BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION INCIDENTAL, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES, ARISING OUT OF OR RELATED TO THIS DOCUMENT OR THE INFORMATION CONTAINED IN IT, EVEN IF AVS INC. HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. The speci®cations and other information contained in this document for some purposes may not be complete, current or correct, and are subject to change without notice. The reader should consult AVS Inc.
    [Show full text]
  • Perancangan Game Multiplatform Menggunakan Scirra Construct 2 Dan Html 5
    Simposium Nasional RAPI XIII - 2014 FT UMS ISSN 1412-9612 PERANCANGAN GAME MULTIPLATFORM MENGGUNAKAN SCIRRA CONSTRUCT 2 DAN HTML 5 Anggit Dwi Hartanto1 , Windha Mega Pradnya Dhuhita2 , Alfian Tinangon1 1Jurusan Teknik Informatika STMIK AMIKOM Yogyakarta Jl. Ringroad Utara Depok Sleman Yogyakarta Telp 0274 884201 2 Jurusan Sistem Informasi STMIK AMIKOM Yogyakarta Jl. Ringroad Utara Depok Sleman Yogyakarta Telp 0274 884201 Email: [email protected] Abstrak Saat ini perkembangan teknologi game berkembang sangatlah pesat, terbukti dengan munculnya berbagai macam game engine yang dapat memfasilitasi pengembang untuk mengembangkan suatu game dengan lebih mudah. Makalah ini membahas tentang pengembangan sebuah game multiplatform dengan menggunakan game engine scirra construct2 dan HTML5 . Engine game tersebut digunakan agar pengembang lebih mudah dalam pengelolaan animasi, suara, layout, layer, kamera, kontrol, dan pengelolaan kecerdasan buatan. Game yang dikembangan bergenre casual game yang bertemakan pertempuran bajak laut untuk menemukan harta karun. Game yang dikembangkan merupakan game mutipaltform yang artinya game tersebut dapat berjalan di lebih dari satu platform, yaitu sistem operasi android mobile, sistem operasi desktop antara lain (Ms. Windows, Mac OS, Linux), dan browser yang mendukung HTML5. Salah satu platform yang menjadi fokus pengembangan game ini adalah android yang merupakan platform yang saat ini mempunyai pengguna sangat banyak. Dengan berjalannya game di platform android, pengguna dapat memainkan game ini kapan saja dan dimana saja. Kata kunci: game, html5, scirra construct 2 Pendahuluan Perkembangan teknologi software selalu mengiringi perkembangan teknologi dari masa kemasa, yang mendorong pertumbuhan industri kreatif yang terus meningkat. Terbukti dengan banyaknya engine maupun tools yang diciptakan untuk mempermudah pengembang dalam mengembangkan software dari masa kemasa.
    [Show full text]
  • IRIS Performer™ Programmer's Guide
    IRIS Performer™ Programmer’s Guide Document Number 007-1680-030 CONTRIBUTORS Edited by Steven Hiatt Illustrated by Dany Galgani Production by Derrald Vogt Engineering contributions by Sharon Clay, Brad Grantham, Don Hatch, Jim Helman, Michael Jones, Martin McDonald, John Rohlf, Allan Schaffer, Chris Tanner, and Jenny Zhao © Copyright 1995, Silicon Graphics, Inc.— All Rights Reserved This document contains proprietary and confidential information of Silicon Graphics, Inc. The contents of this document may not be disclosed to third parties, copied, or duplicated in any form, in whole or in part, without the prior written permission of Silicon Graphics, Inc. RESTRICTED RIGHTS LEGEND Use, duplication, or disclosure of the technical data contained in this document by the Government is subject to restrictions as set forth in subdivision (c) (1) (ii) of the Rights in Technical Data and Computer Software clause at DFARS 52.227-7013 and/ or in similar or successor clauses in the FAR, or in the DOD or NASA FAR Supplement. Unpublished rights reserved under the Copyright Laws of the United States. Contractor/manufacturer is Silicon Graphics, Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. Indigo, IRIS, OpenGL, Silicon Graphics, and the Silicon Graphics logo are registered trademarks and Crimson, Elan Graphics, Geometry Pipeline, ImageVision Library, Indigo Elan, Indigo2, Indy, IRIS GL, IRIS Graphics Library, IRIS Indigo, IRIS InSight, IRIS Inventor, IRIS Performer, IRIX, Onyx, Personal IRIS, Power Series, RealityEngine, RealityEngine2, and Showcase are trademarks of Silicon Graphics, Inc. AutoCAD is a registered trademark of Autodesk, Inc. X Window System is a trademark of Massachusetts Institute of Technology.
    [Show full text]
  • PACKET 22 BOOKSTORE, TEXTBOOK CHAPTER Reading Graphics
    A.11 GRAPHICS CARDS, Historical Perspective (edited by J Wunderlich PhD in 2020) Graphics Pipeline Evolution 3D graphics pipeline hardware evolved from the large expensive systems of the early 1980s to small workstations and then to PC accelerators in the 1990s, to $X,000 graphics cards of the 2020’s During this period, three major transitions occurred: 1. Performance-leading graphics subsystems PRICE changed from $50,000 in 1980’s down to $200 in 1990’s, then up to $X,0000 in 2020’s. 2. PERFORMANCE increased from 50 million PIXELS PER SECOND in 1980’s to 1 billion pixels per second in 1990’’s and from 100,000 VERTICES PER SECOND to 10 million vertices per second in the 1990’s. In the 2020’s performance is measured more in FRAMES PER SECOND (FPS) 3. Hardware RENDERING evolved from WIREFRAME to FILLED POLYGONS, to FULL- SCENE TEXTURE MAPPING Fixed-Function Graphics Pipelines Throughout the early evolution, graphics hardware was configurable, but not programmable by the application developer. With each generation, incremental improvements were offered. But developers were growing more sophisticated and asking for more new features than could be reasonably offered as built-in fixed functions. The NVIDIA GeForce 3, described by Lindholm, et al. [2001], took the first step toward true general shader programmability. It exposed to the application developer what had been the private internal instruction set of the floating-point vertex engine. This coincided with the release of Microsoft’s DirectX 8 and OpenGL’s vertex shader extensions. Later GPUs, at the time of DirectX 9, extended general programmability and floating point capability to the pixel fragment stage, and made texture available at the vertex stage.
    [Show full text]
  • Data Sanity Check for Deep Learning Systems Via Learnt Assertions
    Data Sanity Check for Deep Learning Systems via Learnt Assertions Haochuan Lu∗y, Huanlin Xu∗y, Nana Liu∗y, Yangfan Zhou∗y, Xin Wang∗y ∗School of Computer Science, Fudan University, Shanghai, China yShanghai Key Laboratory of Intelligent Information Processing, Shanghai, China Abstract—Reliability is a critical consideration to DL- based deviations in a data flow perspective. Invalid input cases are systems. But the statistical nature of DL makes it quite vulnerable thus identified effectively. to invalid inputs, i.e., those cases that are not considered in We summarize the contributions of this paper as follows. the training phase of a DL model. This paper proposes to perform data sanity check to identify invalid inputs, so as to • We approach reliability enhancement of DL systems via enhance the reliability of DL-based systems. We design and data sanity check. We proposed a tool, namely SaneDL, implement a tool to detect behavior deviation of a DL model to perform data sanity check for DL-based systems. when processing an input case. This tool extracts the data flow SaneDL provides assertion mechanism to detect behavior footprints and conducts an assertion-based validation mechanism. The assertions are built automatically, which are specifically- deviation of DL model. To our knowledge, SaneDL is the tailored for DL model data flow analysis. Our experiments first assertion-based tool that can automatically detects conducted with real-world scenarios demonstrate that such an invalid input cases for DL systems. Our work can shed assertion-based data sanity check mechanism is effective in light to other practices in improving DL reliability.
    [Show full text]
  • 2D Multiplayer Game Development Using Unity
    Vol-6 Issue-2 2020 IJARIIE-ISSN(O)-2395-4396 2D MULTIPLAYER GAME DEVELOPMENT USING UNITY Kumaresan G1, Sharath A2, Sheshanth B P3, Somesh A4 1 Assistant Professor, Department of Computer Science and Engineering, SRM Valliammai Engineering College, Tamil Nadu, India 2 UG Student, Department of Computer Science and Engineering, SRM Valliammai Engineering College, Tamil Nadu, India 3 UG Student, Department of Computer Science and Engineering, SRM Valliammai Engineering College, Tamil Nadu, India 4 UG Student, Department of Computer Science and Engineering, SRM Valliammai Engineering College, Tamil Nadu, India ABSTRACT Video games are common these days. The games have been developed for various purposes including entertainment, informational purposes, marketing, and advertising purposes. Game developers are continually developing multi- platform games that can be played on computers, mobile devices like iPads and smartphones and other video game devices. Today, mobile games consume a huge market share within the games industry. Considering that nearly two billion mobile devices are running a Unity-made game, it is probable that quite a large majority of these new companies will be using Unity to develop mobile games. Mobile games are becoming more and more popular and well-received by different types of users around the world. A lot of frameworks that allow developers to create the games in a faster and easier way. The Unity 3D engine is employed by an outsized majority of developers to make games. It owns a forty-five percent market share and is considered one of the biggest development tools today This project involves the approach of creating a 2D mobile game using Unity.
    [Show full text]
  • Are Game Engines Software Frameworks?
    ? Are Game Engines Software Frameworks? A Three-perspective Study a < b c c Cristiano Politowski , , Fabio Petrillo , João Eduardo Montandon , Marco Tulio Valente and a Yann-Gaël Guéhéneuc aConcordia University, Montreal, Quebec, Canada bUniversité du Québec à Chicoutimi, Chicoutimi, Quebec, Canada cUniversidade Federal de Minas Gerais, Belo Horizonte, Brazil ARTICLEINFO Abstract Keywords: Game engines help developers create video games and avoid duplication of code and effort, like frame- Game-engine works for traditional software systems. In this paper, we explore open-source game engines along three Framework perspectives: literature, code, and human. First, we explore and summarise the academic literature Video-game on game engines. Second, we compare the characteristics of the 282 most popular engines and the Mining 282 most popular frameworks in GitHub. Finally, we survey 124 engine developers about their expe- Open-source rience with the development of their engines. We report that: (1) Game engines are not well-studied in software-engineering research with few studies having engines as object of research. (2) Open- source game engines are slightly larger in terms of size and complexity and less popular and engaging than traditional frameworks. Their programming languages differ greatly from frameworks. Engine projects have shorter histories with less releases. (3) Developers perceive game engines as different from traditional frameworks. Generally, they build game engines to (a) better control the environ- ment and source code, (b) learn about game engines, and (c) develop specific games. We conclude that open-source game engines have differences compared to traditional open-source frameworks al- though this differences do not demand special treatments.
    [Show full text]
  • Immersion Demos New Haptic Apps at Samsung Developers Conference
    October 28, 2013 Immersion Demos New Haptic Apps at Samsung Developers Conference Go hands-on with new titles from developers like Creative Mobile, HeroCraft, Fat Bat Studios and Modesty at the Immersion exhibition & game lounge SAN FRANCISCO--(BUSINESS WIRE)-- Samsung Developers Conference (SDC 2013) —- Immersion Corporation (Nasdaq:IMMR), the leading developer and licensor of touch feedback technology, will be hosting a technical session for game developers on the design and integration of tactile effects and demonstrating the latest titles from developers using the Immersion Haptic SDK at the Samsung Developers Conference in San Francisco. Attendees can find Immersion throughout the two-day event: ● Experience the Immersion Haptic Gaming Lounge at the Exploratorium after party on Monday, October 28th th ● Join Immersion on Tuesday, October 29 for the conference session titled "Up Your Game," where developers will learn how to incorporate haptic effects with maximum impact and minimal effort th ● Visit the Immersion exhibition on Tuesday, October 29 to experience the latest apps and visit with our team of experts to learn more about Immersion's Haptic integration tools "The Immersion Haptic SDK brings the console gaming experience to the mobile platform by providing Android game developers with tools to easily incorporate high quality, immersive tactile feedback into their mobile games," explains Suzanne Nguyen, Director of Developer Marketing at Immersion. "We designed the Haptic SDK to deliver quality effects on all Android handsets
    [Show full text]