Data Driven Visualization Tool for Game Telemetry Martin Engelbrektsson Marcus Lilja

Total Page:16

File Type:pdf, Size:1020Kb

Data Driven Visualization Tool for Game Telemetry Martin Engelbrektsson Marcus Lilja LiU-ITN-TEK-A--17/055--SE Data Driven Visualization Tool for Game Telemetry Martin Engelbrektsson Marcus Lilja 2017-10-20 Department of Science and Technology Institutionen för teknik och naturvetenskap Linköping University Linköpings universitet nedewS ,gnipökrroN 47 106-ES 47 ,gnipökrroN nedewS 106 47 gnipökrroN LiU-ITN-TEK-A--17/055--SE Data Driven Visualization Tool for Game Telemetry Examensarbete utfört i Medieteknik vid Tekniska högskolan vid Linköpings universitet Martin Engelbrektsson Marcus Lilja Handledare Henry Fröcklin Examinator Stefan Gustavson Norrköping 2017-10-20 Upphovsrätt Detta dokument hålls tillgängligt på Internet – eller dess framtida ersättare – under en längre tid från publiceringsdatum under förutsättning att inga extra- ordinära omständigheter uppstår. Tillgång till dokumentet innebär tillstånd för var och en att läsa, ladda ner, skriva ut enstaka kopior för enskilt bruk och att använda det oförändrat för ickekommersiell forskning och för undervisning. Överföring av upphovsrätten vid en senare tidpunkt kan inte upphäva detta tillstånd. All annan användning av dokumentet kräver upphovsmannens medgivande. För att garantera äktheten, säkerheten och tillgängligheten finns det lösningar av teknisk och administrativ art. Upphovsmannens ideella rätt innefattar rätt att bli nämnd som upphovsman i den omfattning som god sed kräver vid användning av dokumentet på ovan beskrivna sätt samt skydd mot att dokumentet ändras eller presenteras i sådan form eller i sådant sammanhang som är kränkande för upphovsmannens litterära eller konstnärliga anseende eller egenart. För ytterligare information om Linköping University Electronic Press se förlagets hemsida http://www.ep.liu.se/ Copyright The publishers will keep this document online on the Internet - or its possible replacement - for a considerable time from the date of publication barring exceptional circumstances. The online availability of the document implies a permanent permission for anyone to read, to download, to print out single copies for your own use and to use it unchanged for any non-commercial research and educational purpose. Subsequent transfers of copyright cannot revoke this permission. All other uses of the document are conditional on the consent of the copyright owner. The publisher has taken technical and administrative measures to assure authenticity, security and accessibility. According to intellectual property law the author has the right to be mentioned when his/her work is accessed as described above and to be protected against infringement. For additional information about the Linköping University Electronic Press and its procedures for publication and for assurance of document integrity, please refer to its WWW home page: http://www.ep.liu.se/ © Martin Engelbrektsson, Marcus Lilja LINKOPING¨ UNIVERSITY Abstract ITN Link¨oping University Master of Science Thesis by Martin Engelbrektsson and Marcus Lilja This thesis describes and evaluates the implementation of a telemetry tool prototype for the game engine Stingray. Arbitrary data can be chosen from a database and visualized in an interactive 3D viewport in the program. The implemented visualization method is a scatter plot with optional color mapping. A MongoDB server communicates with the editor via a native DLL written in C/C++ which in turn can send data to the rendering engine via JavaScript-Lua communication. Several implemented and continuously improved pipelines are discussed and analyzed throughout the report. The tool is designed to be data driven. Advantages and disad- vantages of doing so are discussed. In the final chapter future improvements and ideas of expanding the plug-in are discussed. Acknowledgements We would like to thank our thesis examiner Stefan Gustavson and assistant Henry Fr¨ocklin at Link¨oping University, for giving general directions and guidance for this master thesis and report. A big thank you goes to our supervisors Dan Engelbrecht and Andreas Asplund at Au- todesk for more project related advice and encouragement. We must of course also thank Jim Sagevid for all practical assistance with programming and interesting philosophical discussions. We would also like to thank Jonathan Schmidt and Sebastien Phaneuf from the Montreal team for their help with plug-in development. An extra thank you to Jonathan for his excellent plug-in tutorial - without which this project would have been much more difficult. ii Contents Abstract i Acknowledgements ii List of Figures v Abbreviations and Terminology vi 1 Introduction 1 1.1 Telemetry Tool for Autodesk Stingray .................... 1 1.2 Limitations ................................... 1 1.3 Research Questions ............................... 2 2 Related Work 3 2.1 Information Visualization for Archipelago Navigation (Visualisering av information vid navigering i sk¨argrd) .................... 3 2.2 Software Development of Visualization Tool for 3D Cameras . 3 2.3 Game Telemetry with DNA Tracking on Assassin’s Creed . 4 2.4 Game Development Telemetry (BioWare) .................. 5 2.5 Autodesk presents Warhammer: The End Times - Vermintide . 5 3 Background 7 3.1 Game Telemetry ................................ 7 3.2 Visualization .................................. 8 3.3 Stingray ..................................... 9 3.4 Editor ...................................... 10 3.4.1 Implementation in JavaScript ..................... 11 3.4.2 Mithril.js ................................ 11 3.4.3 View-Model Structure ......................... 12 3.4.4 User Interface Components ...................... 12 3.4.5 JavaScript to C Communication ................... 13 3.5 Engine ...................................... 13 3.5.1 Lua to C Communication ....................... 14 3.6 Plug-ins ..................................... 15 iii Contents iv 4 Implementation 17 4.1 Pipeline ..................................... 17 4.2 Editor ...................................... 18 4.2.1 Database Connection .......................... 18 4.2.2 Fetching Data .............................. 19 4.2.3 Visualization Options ......................... 21 4.3 Engine ...................................... 21 4.4 Data Visualization ............................... 22 5 Results 23 5.1 General Results ................................. 23 5.2 Fatshark-Specific Results ........................... 25 6 Discussion 28 6.1 The Work Process ............................... 28 6.2 Design Changes ................................. 30 6.2.1 MongoDB with Node.js Server or C API . 30 6.2.2 Data Driven Tool ............................ 32 6.3 Future Work .................................. 32 6.3.1 Finding Unique Keys in a Collection . 32 6.3.2 Filtering ................................. 33 6.3.3 Supporting Different Database Systems . 33 6.3.4 Database Optimization ........................ 33 6.3.5 UX and Visualization Methods .................... 34 7 Conclusion 35 7.1 How should the data pipeline be design for the tool? . 35 7.2 How generalized and data driven can a visualization tool be? What are the limitations? ................................. 36 Bibliography 37 List of Figures 3.1 Simplified illustration of Stingray’s structure. 10 3.2 Overview of how the engine interacts with plug-ins. 14 3.3 The Stingray program. Notice how all panels are separate plug-ins. 15 3.4 Overview of Stingrays plug-in communication for the editor. 16 4.1 The first pipeline design of the plugin. .................... 17 4.2 This list displays the available fields in the database for a certain collection. 20 5.1 The resulting design of the plugin. ...................... 23 5.2 A list of up to 1000 documents with all the values to the fields keys in the collection. .................................. 24 5.3 A sample of the test database with the keys id, position and scalar. 24 5.4 The Visualization GUI component with the different options. 25 5.5 Scatter plot visualization with the test database. 25 5.6 Scatter plot visualization with the test database and color scaling. 26 5.7 How the GUI looks when it is modified to work with the Fatshark database. 26 5.8 Scatter plot with Fatshark’s level Man the Ramparts and corresponding telemetry. .................................... 27 5.9 A scatter plot with color scaling enabled. 27 5.10 The default color of the boxes when the engine does not receive a valid scalar value. ................................... 27 6.1 The pipeline when using an external Node.js server. 30 6.2 The pipeline using native DLL:s instead of an external Node.js dependency. 31 6.3 The resulting data-driven pipeline. ...................... 32 v Abbreviations and Terminology IP Internet Protocol DLL Dynamic-Link Library API Application Programming Interface EULA End-User Licence Agreement Ad hoc A non-generalized solution designed for one specific application or purpose AAA Informal classification of video game productions with high budgets VR Virtual Reality DOM Document Object Model. HTML document interface MVC Model-View Controller. A design pattern UI User Interface UX User Experience JSON JavaScript Object Notation BSON Binary JSON OOP Object Oriented Programming DOD Data Oriented Design vi Chapter 1 Introduction 1.1 Telemetry Tool for Autodesk Stingray When developing a video game it is crucial to optimize both technology and design. It is critical to properly allocate resources performance-wise. A too detailed object might weight the performance down unnecessarily. It is also vital to design-wise understand player behaviour and how users interact with the game. Are certain areas to
Recommended publications
  • Unity Training Academy 2018-2019, #2 Aras Pranckevičius
    Random Things About Code Unity Training Academy 2018-2019, #2 Aras Pranckevičius 1 Generative Art – Made with Unity Caveat Emptor ● This is going to be totally random! ● Without any structure! ● ...so yeah :) 2 Random Intro 3 A long time ago in a galaxy far, far away... ● I thought these are awesome: ○ C++ ○ STL, Boost ○ Object Oriented Programming ○ Design Patterns ● Had hair! 4 Now... ● Most of these are... ”not that good” ○ C++: too complicated ○ STL/Boost: too complicated, over-engineered ○ OOP: only useful for UI widgets ○ Design Patterns: BS to sell books/courses ● No hair :( 5 Some things which I like: Futurist Programming ● “Futurist Programming” by Nick Porcino ● http://nickporcino.com/meshula-net-archive/posts/post168.html 6 Some things which I like: Futurist Programming ● No Compromise, No Waste Programming ○ The program is the BEST at what it does ○ The program is FAST ○ The footprint is SMALL ○ The code is CLEAR ○ The program is BUG-FREE ○ Abstractions must SIMPLIFY ○ The unnecessary is ELIMINATED ○ NO COMPROMISES in the name of Extensibility, Modularity, Structured Programming, Reusable Code, Top Down Design, Standards, Object Oriented Design, or Agility. 7 Some things which I like: Three Big Lies ● “Three Big Lies” by Mike Acton ● https://www.gdcvault.com/play/1012200/Three-Big-Lies-Typical-Design ● https://cellperformance.beyond3d.com/articles/2008/03/three-big-lies.html ● Fun fact: Mike is at Unity now, working on ECS and stuff! 8 Some things which I like: Three Big Lies ● Software is a platform ● Code designed around
    [Show full text]
  • BITSQUID: BEHIND T HE SCENES Building a Game Engine Design, Implementation & Challenges
    BITSQUID: BEHIND T HE SCENES Building a Game Engine Design, Implementation & Challenges Niklas Frykholm System Architect, Bitsquid DESIGN GOALS • An engine that is:! Flexible! Fast! And supports good workflows! ! • Not a click-and-play “game maker”! Aimed at professionals who want full performance and full control! • Not a repurposed first-person shooter! For all game types FLEXIBLE • Engine! Avoid bit-rot (large software systems get worse over time)! • Any game type! FPS, platformer, RPG, racing game, architectural visualization, etc! User must be in full control of game logic! • Wide range of platforms (mobile → high end PC)! Very different performance characteristics! Don’t try to hide platform differences (abstraction → inefficiency)! Users must be able to control the entire rendering pipeline (forward/deferred)! • Flexibility puts higher demands on users than click-to-play Hamilton’s Great Adventure (Fatshark: PC, PS3, Android) War of the Roses (Fatshark: PC) Krater (Fatshark: PC, OS X) The Showdown Effect (Arrowhead: PC, OS X) War of the Vikings (Fatshark) Magica Wizard Wars (Paradox North) Helldivers (Arrowhead) AVOIDING BIT-ROT • Care about code quality! Publish your source code! (We give it to our customers)! • Keep the engine small! Less code is better! Aggressively remove what you don’t use!! Don’t do everything that our customers want! (They can do it themselves in the source.)! • Refactor! When you find a better way to do things → rewrite! • Decouple! As few dependencies between systems as possible! Individual systems can be replaced
    [Show full text]
  • Confidential. © 2009-2015 Crytek Gmbh. All Rights Reserved. Page
    With CRYENGINE 5.1.0, we have deprecated the support for Visual Studio 2012 and 2013. For more information, please check Visual Studio Supported Versions. This has implications on the language features that can be used in the code-base. This document outlines the most important coding standards that are applicable to CRYENGINE. Its main purpose is to achieve overall code consistency and software structural quality. It is a helper for improving code readability and easing maintenance. Programmers are expected to follow this standard while writing code for CRYENGINE. There may be few exceptions to deviate from the coding standard, since we cannot predict every scenario or situation that may occur in the future. The majority of code should follow these rules, so that we can have a clearer and maintainable code base. These rules apply to CRYENGINE, Sandbox and plug-in/extensions thereof. (All the code can be found under Code/CryEngine, Code/Sandbox and Code/CryExtensions) When you intend to deviate from the guidelines, you should mention this in the code review so that: Reviewer spends less time marking them. You can immediately state the reason for the deviation to avoid any confusion. Coding standard Disabled C++ features Uncrustify code formatting tool Common rules: Tabs and spaces Spaces in expressions Long and complex expressions Wrapping Long function parameter lists if statement for statement Infinite loops switch statement Conditional operator (ternary) Constructor initialization lists Formatting rules for composite types Naming conventions
    [Show full text]
  • Flexible Rendering for Multiple Platforms
    Flexible Rendering for Multiple Platforms [email protected] Nikolaj Kledzik / Frans Enmark Polygon – Verktygslåda 8 Art Direction & Design Inspiration Logotyp 2011 © Nikolaj Kledzik / Frans Enmark Breakdown –Introduction –Bitsquid Rendering Architecture –Tools Bitsquid –High-end game engine for licensing –Multi-platform: PC, MAC, PS3, X360, High-end mobile –Currently powering 10 titles in production – Production team sizes 15-40 developers Bitsquid –Key design principles – Simple & lightweight code base (~200KLOC) –Including tools – Heavily data-driven – Quick iteration times – Data-oriented design –Highly flexible... Screenshot : WOTR “War of the Roses” Courtesy of Fatshark and Paradox Interactive Screenshot : WOTR “War of the Roses” Courtesy of Fatshark and Paradox Interactive Content Slide – Text Here – Or here “Krater” Courtesy of Fatshark Krater “Krater” Courtesy of Fatshark Screenshot: Shoot “The Showdown Effect” Courtesy of Arrowhead Game Studios & Paradox Interactive Screenshot Hamilton “Hamilton’s Great Adventure” Courtesy of Fatshark “Stone Giant” DX11 tech demo Flexible rendering –Bitsquid powers a broad variety of game types – Third-person, top-down, 2.5D side-scrollers and more –Different types of games can have very different needs w.r.t rendering – 30Hz vs 60Hz – Shading & Shadows – Post effects, etc.. –Game context aware rendering – Stop rendering sun shadows indoors, simplified rendering in split-screen Flexible rendering –Also need to run on lots of different HW-architectures –Cannot abstract away platform differences, we need stuff like: – Detailed control over EDRAM traffic (X360) – SPU offloading (PS3) – Scalable shading architecture (forward vs deferred, baked vs real-time) –What can we do? – Push the decisions to the developer! –But, make it as easy as possible for them..
    [Show full text]
  • Practical Particle Lighting
    Practical Particle Lighting [email protected] Nikolaj Kledzik / Frans Enmark Polygon – Verktygslåda 8 Art Direction & Design Inspiration Logotyp 2011 © Nikolaj Kledzik / Frans Enmark Overview –Introduction –Basic Particle Lighting –Improvements –Conclusions Introduction: Bitsquid –High-end game engine for licensing –Currently powering 10 titles in production – Team sizes between 15 and 40 developers –Techniques presented used in one announced title so far – “War of the Roses”, Fatshark / Paradox Interactive TODO: WOTR screenshot –Showing lit smoke pillars – “War of the Roses” Courtesy of Fatshark and Paradox Interactive Introduction: Particle Lighting –a.k.a. Billboard lighting –Focus on making billboards fit in with the environment – Must support dynamic local lights as well as global lighting environment –Cheap enough to be used on all non-emissive particles – Keep PS work to a minimum, push bulk cost to earlier stage (VS or DS or even off GPU on some arch.) Unlit Particles Motivation screenshot –Unlit particles Lit Particles Motivation screenshot –Lit particles Vertex Lighting –Super cheap – Calc incoming light per-vertex in VS (or on CPU) – Modulate with particle color in PS –Solves problem with fitting into rest of the scene –Better than nothing but looks very flat – No sense of incoming light direction biggest problem –Can we do better? Resurrecting an old friend: HL2-basis –Project lighting environment to HL2-basis[1] –Align HL2-basis vectors with billboard (i.e view space) Z+ Y+ X+ Lighting using HL2-basis –In VS: For
    [Show full text]
  • Theindiegamedeveloperhandbook.Pdf
    THE INDIE GAME DEVELOPER HANDBOOK This page intentionally left blank THE INDIE GAME DEVELOPER HANDBOOK Richard Hill-Whittall First published 2015 by Focal Press 70 Blanchard Road, Suite 402, Burlington, MA 01803 and by Focal Press 2 Park Square, Milton Park, Abingdon, Oxon OX14 4RN Focal Press is an imprint of the Taylor & Francis Group, an informa business © 2015 Taylor & Francis The right of Richard Hill-Whittall to be identified as the author of this work has been asserted by him in accordance with sections 77 and 78 of the Copyright, Designs and Patents Act 1988. All rights reserved. No part of this book may be reprinted or reproduced or utilised in any form or by any electronic, mechanical, or other means, now known or hereafter invented, including photocopying and recording, or in any information storage or retrieval system, without permission in writing from the publishers. Notices Knowledge and best practice in this field are constantly changing. As new research and experience broaden our understanding, changes in research methods, professional practices, or medical treatment may become necessary. Practitioners and researchers must always rely on their own experience and knowledge in evaluating and using any information, methods, compounds, or experiments described herein. In using such information or methods they should be mindful of their own safety and the safety of others, including parties for whom they have a professional responsibility. Product or corporate names may be trademarks or registered trademarks, and are used only for identification and explanation without intent to infringe. Library of Congress Cataloging-in-Publication Data Hill-Whittall, Richard.
    [Show full text]
  • Karelia-Ammattikorkeakoulu Viiden 3D
    KARELIA•AMMATTIKORKEAKOULU Tietojenkäsittelyn koulutusohjelma Janne Mononen VIIDEN 3D-PELIMOOTTORIN VERTAILU UUDEN KEHITTÄJÄN NÄKÖKUL- MASTA Opinnäytetyö Marraskuu 2016 OPINNÄYTETYÖ Marraskuu 2016 Tietojenkäsittelyn koulutusohjelma Tikkarinne 9 80220 JOENSUU 013 260 600 Tekijä(t) Janne Mononen Nimeke Viiden 3D-pelimoottorin vertailu uuden kehittäjän näkökulmasta Toimeksiantaja Joensuu Games Tiivistelmä Tässä opinnäytetyössä vertaillaan viittä helposti saatavilla olevaa 3D-pelimoottoria uuden tai kokemattoman kehittäjän näkökulmasta. Opinnäytetyön tavoitteena on vertailla peli- moottoreiden ominaisuuksia ja selventää lukijalle minkälaiselle kehittäjälle tai kehittäjäryh- mälle opinnäytetyöhön valitut pelimoottorit sopivat. Opinnäytetyö on tutkimuksellinen. Opinnäytetyöhön valittuja pelimoottoreita vertailtiin sellaisten ominaisuuksien osalta, jotka ovat tärkeitä kaikissa 3D-peliprojekteissa. Ominaisuuksia vertailtiin niiden monipuolisuu- den, helppokäyttöisyyden ja dokumentaation kattavuuden osalta. Opinnäytetyössä luotiin myös katsaus pelimoottoreiden käyttökustannuksiin ja rojaltimaksuihin. Opinnäytetyön tuloksena arvioidaan minkälaiselle kehittäjälle tai kehittäjäryhmälle vertai- lun pelimoottorit soveltuvat. Opinnäytetyön lopputuloksena kehittyi myös paljon vertailutie- toa ja huomioita pelimoottoreiden ominaisuuksista. Opinnäytetyön tuloksien on tarkoitus helpottaa uuden kehittäjän pelimoottorivalintaa. Kieli Sivuja 95 Suomi Liitteet Asiasanat pelimoottori, vertailu, Unity, Unreal Engine, Cryengine, Autodesk, Amazon, Stingray, Lumberyard
    [Show full text]
  • Maxime Capuano
    Maxime Capuano 164 rue Adhemar Fabri, La Roche-sur-Foron, France 07 78 39 57 69 – [email protected] malkaviel.github.io/particle/ Education Professional bachelor degree 2018 - 2019 • Puy-en-Velay IUT, France. • Academic interests: Medical imaging, 3D mathematics, algorithms and programming. • Developed a MRI visualization software with the Unity Game Engine and the Microsoft Hololens, to display and manipulate MRI images on top of patients in real-time. DUT 2015 - 2017 • Puy-en-Velay IUT, France. • Academic interests: General computer science knowledge, C++ and C# programming, 3D mathematics and algorithms, game development. • Developed a complete 2D game with the Unity Game Engine with a group of 14 students. • Reworked the Puy-en-Velay IUT’s website. Capuano Resume – Page 1 of 3 Professional Experience OpenStudio 2018 – 2019 Back-end Web Developer (Apprenticeship) • Puy-en-Velay, France. • Helped at the development of new functionalities, correction of bugs, and refactoring of the back-end framework and plugins used by OpenStudio. • Worked on the introduction of automating tools and debugging tools in the development process, in order to automatically test the websites functionalities, make their deployment easier and make the development and debugging of projects easier and faster. FB Digital 2017 Back-end Web Developer (Internship) • Brioude, France. • At first, assisted the lead developer with small tasks, in order to gain experience with the tools used by FB Digital (PHP, Symfony web framework, Thelia e-commerce framework). • Later, worked as the lead developer on an e-commerce project, implementing most back-end functionalities. Capuano Resume – Page 2 of 3 Personal Projects The Forgotten Ark 2017 • A first person shooter arena in a sci-fi universe, where the player can select its archetype to fit its play-style.
    [Show full text]
  • Swedish Game Developer Index 2016 Game Developer Index
    Swedish game developer index 2016 game developer index First Edition Published by Swedish Games Industry Research: Hanna Metsis, Jacob Kroon Text & Design: Jacob Kroon Swedish Games Industry is a partnership between ANGI and Spelplan-ASGD. Dataspelsbranschen Swedish Games Industry Klara norra kyrkogata 31, Box 22307 SE-104 22 Stockholm www.dataspelsbranschen.se Contact: [email protected] 2016 2 Table of contents summary 4 preface 5 revenue & profit 6-7 employment 8 number of companies 8 gender distribution 9 turnover per company 10 employees per company 10 largest companies 11 company map 12-13 future 15 actual revenues 16 domestic market 17 worldwide 18-20 intellectual property infringement 20 threats & challenges 23 listed game companies 24-26 conclusion 28 methodology 31 timeline - a selection 33 glossary 34 3 summary ame Developer Index analyzes the growth of Swedis video game companies and international trends by compiling the annual accounts of the companies. Swedish game development is an export industry operating on a highly globalized market. The domestic Gindustry has grown from a hobby of enthusiasts to a world-wide industry with cultural and economic significance under just a few decades. The Game Developer Index 2016 summarizes the growth of the latest fiscal year. The sumary in brief: Revenue increased by 41 per cent to almost EUR1,3 billion in 2015. A 200 per cent increase in two years. A majority of companies are profitable and the industry has reported a total profit for seven years running. Employment increased by 19 per cent, more than 550 full-time positions, to a total of 3709 employees.
    [Show full text]
  • Swedish Technology Report 2 0 1 7
    Swedish Technology Report 2 0 1 7 Table of contents EXECUTIVE SUMMARY...............................................................2 TECHNOLOGY MARKET DRIVERS................................................4 SWEDISH TECH IPOs 2016: A REVIEW.......................................9 MARKET EXPECTATIONS...........................................................12 REDEYE SCREENING................................................................18 TOP PICKS-PORTFOLIO............................................................24 APPENDIX: REDEYE RESEARCH & RATING................................31 APPENDIX COMPANIES: Addnode, Allgon, AllTele, Anoto, Arise, Avega..................................36 Avtech, aXichem, Bredband2, Cherry, Cinnober..............................48 Crowdsoft, DGC, Doro, Enea, Ericsson.............................................58 Fingerprint Cards, Formpipe, Heliospectra.................................... 68 Hexatronic, Invisio, Lagercrantz, Mr Green.....................................74 Mycronic, myTaste, NC Lahega, Neonode, Nokia.............................82 Opus, Paynova, Photocat, Polygiene, Powercell.............................92 Prevas, Sensys Traffic, Stillfront, Systemair...................................102 Waystream, Verisec, West International........................................110 APPENDIX: REDEYE TECHNOLOGY TEAM.................................116 APPENDIX: DISCLAIMER.........................................................119 Executive Summary Redeye’s technology team consists of 7 analysts, which
    [Show full text]
  • Realtidsrendering Av Hud Daniel Holst
    LiU-ITN-TEK-A--17/019--SE Realtidsrendering av hud Daniel Holst 2017-06-09 Department of Science and Technology Institutionen för teknik och naturvetenskap Linköping University Linköpings universitet nedewS ,gnipökrroN 47 106-ES 47 ,gnipökrroN nedewS 106 47 gnipökrroN LiU-ITN-TEK-A--17/019--SE Realtidsrendering av hud Examensarbete utfört i Medieteknik vid Tekniska högskolan vid Linköpings universitet Daniel Holst Handledare Apostolia Tsirikoglou Examinator Jonas Unger Norrköping 2017-06-09 Upphovsrätt Detta dokument hålls tillgängligt på Internet – eller dess framtida ersättare – under en längre tid från publiceringsdatum under förutsättning att inga extra- ordinära omständigheter uppstår. Tillgång till dokumentet innebär tillstånd för var och en att läsa, ladda ner, skriva ut enstaka kopior för enskilt bruk och att använda det oförändrat för ickekommersiell forskning och för undervisning. Överföring av upphovsrätten vid en senare tidpunkt kan inte upphäva detta tillstånd. All annan användning av dokumentet kräver upphovsmannens medgivande. För att garantera äktheten, säkerheten och tillgängligheten finns det lösningar av teknisk och administrativ art. Upphovsmannens ideella rätt innefattar rätt att bli nämnd som upphovsman i den omfattning som god sed kräver vid användning av dokumentet på ovan beskrivna sätt samt skydd mot att dokumentet ändras eller presenteras i sådan form eller i sådant sammanhang som är kränkande för upphovsmannens litterära eller konstnärliga anseende eller egenart. För ytterligare information om Linköping University Electronic Press se förlagets hemsida http://www.ep.liu.se/ Copyright The publishers will keep this document online on the Internet - or its possible replacement - for a considerable time from the date of publication barring exceptional circumstances. The online availability of the document implies a permanent permission for anyone to read, to download, to print out single copies for your own use and to use it unchanged for any non-commercial research and educational purpose.
    [Show full text]
  • GAME DEVELOPER INDEX 2015 Based on 2014 Swedish Annual Reports Table of Contents
    GAME DEVELOPER INDEX 2015 Based on 2014 Swedish Annual Reports Table of Contents SUMMARY 2 PREFACE 4 TURNOVER AND PROFIT 5-6 NEW EMPLOYMENT 8 NUMBER OF COMPANIES 8 GENDER DISTRIBUTION 9 TURNOVER PER COMPANY 9 EMPOYEES PER COMPANY 9 BIGGEST PLAYERS 12 DISTRIBUTION PLATFORMS 12 REVIEWS 13 GAME DEVELOPER MAP 15-16 FUTURE 17-20 ACTUAL REVENUES 22 PIRACY 22 GLOBALLY 23 THREATS 25 CONCLUSION AND METHODOLOGY 26 TIMELINE - A SELECTION 27 GLOSSARY 28 On the cover: Unravel, Coldwood Interactive 1 Summary The Game Developer Index analyzes the activities of Swedish game developers, as well as international trends, throughout the year by compiling the annual accounts of the companies. Swedish game development is an export industry operating in a highly globalized market. The gaming business has grown from a hobby of enthusiasts to a world-wide industry with cultural and economic significance. The Game Developer Index 2015 summarizes the reports of the latest financial year. The summary in brief: • Turnover of Swedish game developers increased by 35 percent to EUR 930 million in 2014. • The majority of the companies are profitable and the industry has reported a total profit for six years running. • Employment increased by 23 percent, or 583 full-time positions, to a total of 3,117 employees. • The proportion of women increased by 39 percent, compared with 17 percent for men. • The compound annual growth rate (CAGR) in the period 2006-2014 is 39 percent. • Forty-three new companies have been added, which amounts to 213 active companies - an increase of 25 percent. • The total value, including acquisitions, of Swedish game developers was over EUR 2.75 billion in 2014.
    [Show full text]