A Distributed Game Engine for Mobile Games on the Android Platform

Total Page:16

File Type:pdf, Size:1020Kb

A Distributed Game Engine for Mobile Games on the Android Platform A Distributed Game Engine for Mobile Games on the Android Platform Davide Gadia1, Dario Maggiorini1, Davide Puopolo2, Laura Anna Ripamonti1 and Luca Ziliani2 Department of Computer Science, University of Milan, via Comelico 39, I-20135 Milano, Italy 1 firstname.lastname @unimi.it, 2 firstname.lastname @studenti.unimi.it { } { } Keywords: Game Engines, Game Development, Mobile Platforms, Distributed Systems. Abstract: In the last few years we have witnessed a tremendous change in the way game developers are required to deal with software production. We moved from small groups building the application ground-up to large coordinated teams with hierarchical organisation. To support this transformation, game developers are now using integrated development and execution environments called game engines. Among all possible gaming platforms, mobile ones are proving to be a challenging ground due to their intrinsic requirement for game engines to deploy the final application on a distributed system. In this paper we discuss about requirements for next-generation game engines for mobile devices. In particular, we propose a variation of the standard approach for game engines architecture pushing from a monolithic architecture toward a distributed one. In our solution, the mobile game engine becomes modular and lower the distinction between client and server side. 1 INTRODUCTION alities. A variable portion of the runtime is usually linked inside the game and distributed along with the In these last years, the way developers implement binary executable. As a matter of fact, deployment video games is undergoing a tremendous change. If for different platforms requires to embed specific run- we look to historical blockbusters for home entertain- times wrapping the same game content. The game ment such as Pitfall!, Tetris, and Prince of Persia we content is made up of rules and assets created by de- can see the name of a single developer. As a matter velopers and artists, which get managed via the tool of fact, in the ’80s, all aspects of video game develop- suite component. When developing a game for a mo- ment were usually managed by a single person or, at bile device, the aforementioned architecture may re- best, a very small group. Today, with the evolution of ally become an hindrance since we have a distributed the entertainment market and the rise of projects with platform as target environment. seven (or eight) figures budget, this situation calls for Mobile applications in general, and games in par- a drastically different approach. Video game develop- ticular, have an intrinsic requirement to be deployed ment is now a distributed collaborative effort involv- on a distributed system due to the always-online na- ing tens to hundreds of programmers. This increasing ture of mobile devices and a strong prerequisite to complexity of teams organisation and the tremendous play (or, at least, interact) online with other players. growth of projects size force development teams to or- Developing any kind of application for a distributed ganise themselves in a hierarchical way and to adopt environment involves managing data transmission be- software engineering practices enforcing string code tween heterogeneous platforms and monitoring real- reusability. As a result, modern video games are im- time operations to prevent failures due to undelivered plemented by means of software environments called or delayed packets. In particular, as also discussed game engines. in (Festa et al., 2017), distributed debugging is a com- A game engine, as largely discussed in literature, plex problem due to the synchronisation required be- is a complex framework made of two main building tween network nodes to correctly reconstruct the se- blocks: a tool suite and a runtime component. In par- quence of events leading to a malfunctioning feature. ticular, the runtime component assembles together all With the increasing presence of distributed appli- the internal libraries required for hardware abstrac- cations and frameworks in online services (i.e., cloud tion and provides services for game-specific function- computing), the constraints introduced by mobile de- 142 Gadia, D., Maggiorini, D., Puopolo, D., Ripamonti, L. and Ziliani, L. A Distributed Game Engine for Mobile Games on the Android Platform. In Proceedings of the International Conference on Computer-Human Interaction Research and Applications (CHIRA 2017), pages 142-149 ISBN: 978-989-758-267-7 Copyright © 2017 by SCITEPRESS – Science and Technology Publications, Lda. All rights reserved A Distributed Game Engine for Mobile Games on the Android Platform vices are now spreading to all other platforms. Un- 2 RELATED WORK der these lenses, current research faces an important task: to understand if classical client-server architec- In the past, a fair number of scientific contributions tures for games are up to the challenge or something has been devoted to improve the architecture of game more modular and flexible is required. We strongly engines. Nevertheless, at the time of this writing and believe that the classical approach will not be enough to the best of our knowledge, only a very limited num- for the next generation of game developers, for two ber of papers are specifically addressing issues related reasons. The first reason is poor scalability. As a mat- to scalability and cross-platform portability. ter of fact, modern games are pushing to involve thou- A significant share of existing literature seems to sands to millions of players in Massively Multiplayer be focused on optimising specific aspects or services, Online Games (MMOGs). The resources used by an such as 3D graphics (e.g., (Cheah and Ng, 2005)) or MMOG must be shared among users and scale in a physics (e.g., (Mulley, 2013; Coumans, 2006; Mag- seamless way with the offered workload. If a stan- giorini et al., 2014)). dard client-server approach is adopted, the server is in charge for data exchange between all clients. Such Issues related to portability on different platforms server will also become a single – global – point of have been addressed, among the others, by (Darken failure and a serious bottleneck. Load shedding be- et al., 2005), (Guana et al., 2015), (Munro et al., tween servers may not be an option when dynamic in- 2009), and (Carter et al., 2010). Authors of (Darken formation must be shared to a worldwide player pop- et al., 2005) propose to improve portability by pro- ulation. The second reason is the client-server strict viding a unifying layer on top of other existing en- dependency from a well known, and always available, gines. In fact, they extend each architecture with an service provider. Next generation games should be additional platform-independent layer and assume a able to exploit the network whenever available, while share set of functionalities to be available on all plat- allowing single player mode when offline, with mini- form. This approach is feasible for multi-platform de- mal experience degradation for the user. ployment but may reduces performances and set all As a result, we envision that there will be a strong platforms to use a shared set of basic features. Au- demand for game engines with a flexible and modular thors of (Guana et al., 2015) focus on development architecture (such as the ones envisioned in (Maggior- complexity and propose a solution based on mod- ini et al., 2015) and (Maggiorini et al., 2016)) which ern model-driven engineering while in (Munro et al., will deploy seamlessly on multiple platforms and al- 2009) an analysis of the open source version of the low component distributions over a network without Quake engine is performed with the purpose to help asking for additional effort from the developer. A pos- independent developers contribute to the project. In sible first step to understand how distributed game en- the first case, developers may not be able to imple- gine can be shaped in the future is to apply their model ment any possible game mechanics while, in the sec- to the current mobile ecosystem (Gerla et al., 2013). ond case, results are limited to a specific game and For this reason, we propose here a modular architec- they stay on the same platform. A different approach ture for game engines targeting the Android operating has been followed by (Carter et al., 2010) where au- system. thors envision convergence to a web-based platform. To deploy our architecture on a distributed system, In this case, we have to outline mobile devices are still we lower the distinction between client and server ar- lacking web-based 3D support and, also, many mobile chitecture and make it evolve in a similar direction features (e.g., bluetooth peer-to-peer connection) may as a peer-to-peer network. Where required, a func- not be accessible as part of the gaming experience. tionality can be provided both locally and remotely If we focus strictly on the adoption of distributed with the same API. Scalability will benefit from this systems as viable platforms for games, research is approach thanks to transparent service-points reloca- currently pushing toward two directions: improving tion. A service may be provided from an arbitrary network performances and providing distributed ser- point of the peers mesh based on resources availabil- vices. ity and response time. Service point relocation can Improvement of network performances is mostly be achieved using local policies leveraging on neigh- related to reduce transmission latency by optimisa- bours node discovery. As a result, from a game devel- tion (Chen et al., 2016b) or offloading (Chen et al., oper’s point of view, no network management will be 2016a; Zucchi et al., 2013) in order to achieve the required and platform-dependent code can be limited same result as in a local system (Chen et al., 2014). to a minimum. Unfortunately, it has been proved long ago that In- ternet is not following a WFQ service model and a reliable estimation strategy for available resources is 143 CHIRA 2017 - International Conference on Computer-Human Interaction Research and Applications still to come.
Recommended publications
  • Framework Para O Desenvolvimento De Experiências Virtuais Com Interacção Háptica
    FACULDADE DE ENGENHARIA DA UNIVERSIDADE DO PORTO Framework para o Desenvolvimento de Experiências Virtuais com Interacção Háptica Telmo da Rocha Pereira Mestrado Integrado em Engenharia Informática e Computação Orientador: Prof. A. Augusto de Sousa Co-orientadora: Prof. ª Teresa Restivo Co-orientador: Prof. António Mendes Lopes 28 de Junho de 2010 Framework para o Desenvolvimento de Experiências Virtuais com Interacção Háptica Telmo da Rocha Pereira Mestrado Integrado em Engenharia Informática e Computação Aprovado em provas públicas pelo Júri: Presidente: Professor João Correia Lopes Vogal Externo: Professor António Ramires Fernandes Orientador: Professor António Augusto de Sousa 31 de Julho de 2010 Resumo A presente dissertação apresenta o trabalho efectuado na área do Desenvolvimento de Experiências Virtuais com Interacção Háptica, nomeadamente experiências relacionadas com o comportamento físico de objectos. Este trabalho enquadra-se numa perspectiva de poder introduzir o desenvolvimento de experiências virtuais com interacção háptica no ensino, estando definido como objectivo a concepção de um conjunto de metodologias que permitam criar este tipo de experiências de forma simples e rápida. Inicia-se assim o trabalho com uma revisão bibliográfica das áreas envolvidas, nomeadamente simulação por computador, computação gráfica, realidade virtual e interacção háptica. Seguidamente são investigadas e analisadas possíveis soluções actualmente existentes e passíveis de serem aplicadas. Dado que não se encontrou uma solução que satisfizesse as necessidades do problema, apresenta-se uma análise das tecnologias necessárias para conceber uma nova solução: motor gráfico, motor físico e dispositivo háptico. As duas primeiras tecnologias referidas são alvo de uma avaliação, que permite escolher, de entre um conjunto de opções, qual o motor gráfico e físico que melhor se adequa às necessidades.
    [Show full text]
  • Game AI in Delta3d
    Proceedings of the 2007 IEEE Symposium on Computational Intelligence and Games (CIG 2007) Game AI in Delta3D Christian J. Darken Bradley G. Anderegg Perry L. McDowell MOVES Institute/CS Dept. Alion Science and Technology Corp MOVES Institute Naval Postgraduate School banderegg at alionscience dot com Naval Postgraduate School cjdarken at nps dot edu mcdowell at nps dot edu Abstract—Delta3D is a GNU-licensed open source game space, we came up with a four-part philosophical credo upon engine with an orientation towards supporting “serious games” such as those with defense and homeland security applications. which we based building our game and simulation engine: AI is an important issue for serious games, since there is more pressure to “get the AI right”, as opposed to providing an 1. Maintain openness in all aspects to avoid lock-ins entertaining user experience. We describe several of our near- and increase flexibility. and longer-term AI projects oriented towards making it easier to build AI-enhanced applications in Delta3D. 2. Maintain the capability to support multiple genres, Keywords: Artificial Intelligence, Game Engines since we never know what type of application it will have to support next. I.INTRODUCTION Delta3D is a open source (Lesser GNU Public License 3. Build the engine in a modular fashion so that we (LPGL)) game engine created at the MOVES Institute, part can swap anything out as technologies mature at of the Naval Postgraduate School in Monterey. While different rates. originally designed for military game-based simulations, Delta3D can be used as the underlying architecture for a 4.
    [Show full text]
  • Estudo Comparativo Entre Engines De Jogos
    FACULDADE DE TECNOLOGIA, CIÊNCIAS E EDUCAÇÃO Graduação GRADUAÇÃO EM CIÊNCIA DA COMPUTAÇÃO Estudo comparativo entre engines de jogos Carlos Gabriel Agostinho Gonçalo Klinke Adinovam Henriques de Macedo Pimenta (Orientador) RESUMO A evolução das engines está agora se movendo para jogos mais realistas e tecnicamente ricos em vários campos, como a física, sons e renderização. Das primeiras engines até as engines mais atuais voltadas para jogos 3D, o objetivo do desenvolvimento permanece o mesmo: fornecer ao desenvolvedor uma plataforma para criar jogos exclusivos de tal maneira que os desenvolvedores não precisem escrever ou desenvolver o jogo a partir do zero, mas apenas implementar a ideia com a ajuda de uma engine. Desta maneira, muitos desenvolvedores (experientes ou iniciantes) têm encontrado nestas ferramentas a maneira mais simples, rápida e profissional de desenvolver novos jogos. Porém, com tantas engines disponíveis, o desenvolvedor precisa fazer uma escolha considerando os dados mais relevantes ao seu projeto. Este trabalho analisou dados de vários atributos relevantes ao processo de escolha considerando as 10 engines mais populares atualmente, servindo de conhecimento e auxílio à este processo decisório. Palavras-chave: Motores de jogos. Desenvolvimento de jogos. Jogos digitais. ABSTRACT The evolution of the game engines is now moving to more realistic and technically rich games in various fields such as physics, sounds and rendering. From the first enginesto the most current engines for 3D gaming, the goal of development remains the same: to provide the developer with a platform to create exclusive games in such a way that developers do not have to write or develop the game from scratch, but only implement the idea with the help of an engine.
    [Show full text]
  • A Survey of Technologies for Building Collaborative Virtual Environments
    The International Journal of Virtual Reality, 2009, 8(1):53-66 53 A Survey of Technologies for Building Collaborative Virtual Environments Timothy E. Wright and Greg Madey Department of Computer Science & Engineering, University of Notre Dame, United States Whereas desktop virtual reality (desktop-VR) typically uses Abstract—What viable technologies exist to enable the nothing more than a keyboard, mouse, and monitor, a Cave development of so-called desktop virtual reality (desktop-VR) Automated Virtual Environment (CAVE) might include several applications? Specifically, which of these are active and capable display walls, video projectors, a haptic input device (e.g., a of helping us to engineer a collaborative, virtual environment “wand” to provide touch capabilities), and multidimensional (CVE)? A review of the literature and numerous project websites indicates an array of both overlapping and disparate approaches sound. The computing platforms to drive these systems also to this problem. In this paper, we review and perform a risk differ: desktop-VR requires a workstation-class computer, assessment of 16 prominent desktop-VR technologies (some mainstream OS, and VR libraries, while a CAVE often runs on building-blocks, some entire platforms) in an effort to determine a multi-node cluster of servers with specialized VR libraries the most efficacious tool or tools for constructing a CVE. and drivers. At first, this may seem reasonable: different levels of immersion require different hardware and software. Index Terms—Collaborative Virtual Environment, Desktop However, the same problems are being solved by both the Virtual Reality, VRML, X3D. desktop-VR and CAVE systems, with specific issues including the management and display of a three dimensional I.
    [Show full text]
  • Virtual Worlds and Conservational Channel Evolution and Pollutant Transport Systems (Concepts)
    University of Mississippi eGrove Electronic Theses and Dissertations Graduate School 2012 Virtual Worlds and Conservational Channel Evolution and Pollutant Transport Systems (Concepts) Chenchutta Denaye Jackson Follow this and additional works at: https://egrove.olemiss.edu/etd Part of the Computer Engineering Commons Recommended Citation Jackson, Chenchutta Denaye, "Virtual Worlds and Conservational Channel Evolution and Pollutant Transport Systems (Concepts)" (2012). Electronic Theses and Dissertations. 147. https://egrove.olemiss.edu/etd/147 This Dissertation is brought to you for free and open access by the Graduate School at eGrove. It has been accepted for inclusion in Electronic Theses and Dissertations by an authorized administrator of eGrove. For more information, please contact [email protected]. VIRTUAL WORLDS AND CONSERVATIONAL CHANNEL EVOLUTION AND POLLUTANT TRANSPORT SYSTEMS (CONCEPTS) A Dissertation Submitted to the Faculty of the University of Mississippi in partial fulfillment of the requirements for the Degree of Doctor of Philosophy in the School of Engineering The University of Mississippi by CHENCHUTTA DENAYE CROSS JACKSON July 2012 Copyright © 2012 by Chenchutta Cross Jackson All rights reserved ABSTRACT Many models exist that predict channel morphology. Channel morphology is defined as the change in geometric parameters of a river. Channel morphology is affected by many factors. Some of these factors are caused either by man or by nature. To combat the adverse effects that man and nature may cause to a water system, scientists and engineers develop stream rehabilitation plans. Stream rehabilitation as defined by Shields et al., states that “restoration is the return from a degraded ecosystem back to a close approximation of its remaining natural potential” [Shields et al., 2003].
    [Show full text]
  • Game Programming Gems 7
    Game Programming Gems 7 Edited by Scott Jacobs Charles River Media A part of Course Technology, Cengage Learning Australia • Brazil • Japan • Korea • Mexico • Singapore • Spain • United Kingdom • United States Publisher and General Manager, © 2008 Course Technology, a part of Cengage Learning. Course Technology PTR: Stacy L. Hiquet Associate Director of Marketing: ALL RIGHTS RESERVED. No part of this work covered by the copyright Sarah Panella herein may be reproduced, transmitted, stored, or used in any form or by any means graphic, electronic, or mechanical, including but not limited to Heather Manager of Editorial Services: photocopying, recording, scanning, digitizing, taping, Web distribution, Talbot information networks, or information storage and retrieval systems, except Marketing Manager: Jordan Casey as permitted under Section 107 or 108 of the 1976 United States Copyright Senior Acquisitions Editor: Emi Smith Act, without the prior written permission of the publisher. Project/Copy Editor: Kezia Endsley CRM Editorial Services Coordinator: Jen Blaney For product information and technology assistance, contact us at Cengage Learning Customer & Sales Support, 1-800-354-9706 Interior Layout Tech: Judith Littlefield Cover Designer: Tyler Creative Services For permission to use material from this text or product, CD-ROM Producer: Brandon Penticuff submit all requests online at cengage.com/permissions Further permissions questions can be emailed to Valerie Haynes Perry Indexer: [email protected] Proofreader: Sue Boshers Library of Congress Control Number: 2007939358 ISBN-13: 978-1-58450-527-3 ISBN-10: 1-58450-527-3 eISBN-10: 1-30527-676-0 Course Technology 25 Thomson Place Boston, MA 02210 USA Cengage Learning is a leading provider of customized learning solutions with office locations around the globe, including Singapore, the United Kingdom, Australia, Mexico, Brazil, and Japan.
    [Show full text]
  • Google Adquiere Motorola Mobility * Las Tablets PC Y Su Alcance * Synergy 1.3.1 * Circuito Impreso Al Instante * Proyecto GIMP-Es
    Google adquiere Motorola Mobility * Las Tablets PC y su alcance * Synergy 1.3.1 * Circuito impreso al instante * Proyecto GIMP-Es El vocero . 5 Premio Concurso 24 Aniversario de Joven Club Editorial Por Ernesto Rodríguez Joven Club, vivió el verano 2011 junto a ti 6 Aniversario 24 de los Joven Club La mirada de TINO . Cumple TINO 4 años de Los usuarios no comprueba los enlaces antes de abrirlos existencia en este septiembre, el sueño que vió 7 Un fallo en Facebook permite apropiarse de páginas creadas la luz en el 2007 es hoy toda una realidad con- Google adquiere Motorola Mobility vertida en proeza. Esfuerzo, tesón y duro bre- gar ha acompañado cada día a esta Revista que El escritorio . ha sabido crecerse en sí misma y superar obs- 8 Las Tablets PC y su alcance táculos y dificultades propias del diario de cur- 11 Propuesta de herramientas libre para el diseño de sitios Web sar. Un colectivo de colaboración joven, entu- 14 Joven Club, Infocomunidad y las TIC siasta y emprendedor –bajo la magistral con- 18 Un vistazo a la Informática forense ducción de Raymond- ha sabido mantener y El laboratorio . desarrollar este proyecto, fruto del trabajo y la profesionalidad de quienes convergen en él. 24 PlayOnLinux TINO acumula innegables resultados en estos 25 KMPlayer 2.9.2.1200 años. Más de 350 000 visitas, un volumen apre- 26 Synergy 1.3.1 ciable de descargas y suscripciones, servicios 27 imgSeek 0.8.6 estos que ha ido incorporando, pero por enci- El entrevistado . ma de todo está el agradecimiento de muchos 28 Hilda Arribas Robaina por su existencia, por sus consejos, su oportu- na información, su diálogo fácil y directo, su uti- El taller .
    [Show full text]
  • AI Game Programming Wisdom 4
    AI Game Programming Wisdom 4 Edited by Steve Rabin Charles River Media A part of Course Technology, Cengage Learning Australia • Brazil • Japan • Korea • Mexico • Singapore • Spain • United Kingdom • United States Publisher and General Manager, Course © 2008 Course Technology, a part of Cengage Learning. Technology PTR: Stacy L. Hiquet Associate Director of Marketing: Sarah ALL RIGHTS RESERVED. No part of this work covered by the copyright Panella herein may be reproduced, transmitted, stored, or used in any form or by any means graphic, electronic, or mechanical, including but not limited to Manager of Editorial Services: Heather photocopying, recording, scanning, digitizing, taping, Web distribution, Talbot information networks, or information storage and retrieval systems, except Marketing Manager: Jordan Casey as permitted under Section 107 or 108 of the 1976 United States Copyright Act, without the prior written permission of the publisher. Acquisitions Editor: Heather Hurley Project Editor: Dan Foster, Scribe Tribe CRM Editorial Services Coordinator: For product information and technology assistance, contact us at Jennifer Blaney Cengage Learning Customer & Sales Support, 1-800-354-9706 Copy Editor: Julie McNamee For permission to use material from this text or product, Interior Layout Tech: Judith Littlefield submit all requests online at cengage.com/permissions Cover Designer: Mike Tanamachi Further permissions questions can be emailed to [email protected] CD-ROM Producer: Brandon Penticuff Indexer: Broccoli Information Management Library of Congress Control Number: 2007939369 Proofreader: Mike Beady ISBN-13: 978-1-58450-523-5 ISBN-10: 1-58450-523-0 eISBN-10: 1-305-40610-9 Course Technology 25 Thomson Place Boston, MA 02210 USA Cengage Learning is a leading provider of customized learning solutions with office locations around the globe, including Singapore, the United Kingdom, Australia, Mexico, Brazil, and Japan.
    [Show full text]
  • LJMU Research Online
    CORE Metadata, citation and similar papers at core.ac.uk Provided by LJMU Research Online LJMU Research Online Tang, SOT and Hanneghan, M State-of-the-Art Model Driven Game Development: A Survey of Technological Solutions for Game-Based Learning http://researchonline.ljmu.ac.uk/205/ Article Citation (please note it is advisable to refer to the publisher’s version if you intend to cite from this work) Tang, SOT and Hanneghan, M (2011) State-of-the-Art Model Driven Game Development: A Survey of Technological Solutions for Game-Based Learning. Journal of Interactive Learning Research, 22 (4). pp. 551-605. ISSN 1093-023x LJMU has developed LJMU Research Online for users to access the research output of the University more effectively. Copyright © and Moral Rights for the papers on this site are retained by the individual authors and/or other copyright owners. Users may download and/or print one copy of any article(s) in LJMU Research Online to facilitate their private study or for non-commercial research. You may not engage in further distribution of the material or use it for any profit-making activities or any commercial gain. The version presented here may differ from the published version or from the version of the record. Please see the repository URL above for details on accessing the published version and note that access may require a subscription. For more information please contact [email protected] http://researchonline.ljmu.ac.uk/ State of the Art Model Driven Game Development: A Survey of Technological Solutions for Game-Based Learning Stephen Tang* and Martin Hanneghan Liverpool John Moores University, James Parsons Building, Byrom Street, Liverpool, L3 3AF, United Kingdom * Corresponding author.
    [Show full text]
  • Systematic Literature Review of Realistic Simulators Applied in Educational Robotics Context
    sensors Systematic Review Systematic Literature Review of Realistic Simulators Applied in Educational Robotics Context Caio Camargo 1, José Gonçalves 1,2,3 , Miguel Á. Conde 4,* , Francisco J. Rodríguez-Sedano 4, Paulo Costa 3,5 and Francisco J. García-Peñalvo 6 1 Instituto Politécnico de Bragança, 5300-253 Bragança, Portugal; [email protected] (C.C.); [email protected] (J.G.) 2 CeDRI—Research Centre in Digitalization and Intelligent Robotics, 5300-253 Bragança, Portugal 3 INESC TEC—Institute for Systems and Computer Engineering, 4200-465 Porto, Portugal; [email protected] 4 Robotics Group, Engineering School, University of León, Campus de Vegazana s/n, 24071 León, Spain; [email protected] 5 Universidade do Porto, 4200-465 Porto, Portugal 6 GRIAL Research Group, Computer Science Department, University of Salamanca, 37008 Salamanca, Spain; [email protected] * Correspondence: [email protected] Abstract: This paper presents a systematic literature review (SLR) about realistic simulators that can be applied in an educational robotics context. These simulators must include the simulation of actuators and sensors, the ability to simulate robots and their environment. During this systematic review of the literature, 559 articles were extracted from six different databases using the Population, Intervention, Comparison, Outcomes, Context (PICOC) method. After the selection process, 50 selected articles were included in this review. Several simulators were found and their features were also Citation: Camargo, C.; Gonçalves, J.; analyzed. As a result of this process, four realistic simulators were applied in the review’s referred Conde, M.Á.; Rodríguez-Sedano, F.J.; context for two main reasons. The first reason is that these simulators have high fidelity in the robots’ Costa, P.; García-Peñalvo, F.J.
    [Show full text]
  • SMASH: a Distributed Game Engine Architecture
    SMASH: a Distributed Game Engine Architecture Dario Maggiorini∗, Laura Anna Ripamonti∗, Eraldo Zanon∗, Claudio Enrico Palazziy and Armir Bujariy ∗Department of Computer Science, University of Milano, Italy yDepartment of Mathematics, University of Padua, Italy Abstract—In these last few years we are witnessing a change of architecture as a development and execution environment in the way video games are implemented. Starting from an early for large scale games may lead to a number of constraints, age, where a single developer was sometimes in charge of the as already presented in [5]. To summarize, a video game may whole creative process, we have moved now toward extremely large groups with a multi-layered organisation. This increasing suffer from the following limitations: it may be monolithic, complexity of team organisation, together with a tremendous it may be centralized and difficult to scale upward, and it growth of projects size, calls for the adoptions of development may be platform dependent. Despite all the aforementioned approaches leveraging on scalability and distributed computing limitations, modern game engines stands to be very good tools environments. Unfortunately, today’s development and execution for the trade. Nevertheless, it is legitimate to call into question environments for games (usually called game engines) are suf- fering from a number of architectural constraints. As a result, how long current engines (re-baptized software stacks) are we strongly believe current engines will not be able to provide likely to provide the flexibility and functionalities required by the flexibility and scalability required by game developers of game developers in the next generations. the next generation.
    [Show full text]
  • Key Accomplishments Expertise Education Technical Skills Work
    [email protected] Stephen H. Westin https://Stephen-Westin.com Experienced and creative software engineer with exceptional skills in computer graphics modeling, rendering, and simulation, and a proven track record of delivering innovative contributions. Key accomplishments • Software development & testing of cybersecurity and software assurance tools. • Software design and development of real-time simulators for heavy vehicle training. • State-of-the-art research in physically-based image synthesis and animation. • Development of an advanced CAD system to support creative automobile design. Expertise • 20+ years experience in 0bject-oriented software design, development, and support. • Expert in tools/techniques for interactive/realistic 3D computer graphics. • Deep knowledge of computational methods for physical modeling/simulation. • 3D geometry description, display, and interaction. • Extensive experience in laboratory methods for illumination/surface metrology. • Excellent communication skills with diverse groups (e. g. non-technical designers, software engineering, automotive engineering). Education • Master of Science, Computer Graphics, Cornell University, 1992. • Bachelor of Science, Electrical and Computer Engineering, University of Michigan, 1980. Technical skills • Programming languages: C/C++, Python, Java, MATLAB, FORTRAN, Pascal, LISP; PDP- 11, VAX, and IBM 370 assembly. • Operating systems: Windows, Linux, OS-X (GUI, command line, batch/scripting). • Interface APIs: wxWidgets, Qt, Swing/AWT, Delta3D. • 3D graphics modeling: Maya, 3D Studio Max, Sketchup, Alias Studio, Photoshop. • 3D graphics rendering: OpenGL, GLSL, RenderMan, Radiance. • Web/markup: HTML/HTML5, Javascript. Work Experience Software Engineer, GrammaTech May 2014 - March 2018 Project – development/testing of cybersecurity and software assurance software. • Developed cross-platform product GUIs (wxWidgets, Python, Javascript). • Maintained code to enforce MISRA software assurance guidelines (C++). • Developed tools to monitor product testing (Python, Excel).
    [Show full text]