the architecture of the kapow systems engine
play

The Architecture of the Kapow Systems Engine by Jacob Marner, - PowerPoint PPT Presentation

The Architecture of the Kapow Systems Engine by Jacob Marner, M.Sc. Architecture Manager Deadline Games What is Kapow Systems? Production tool for making games A sand box Cross platform run-time system Supports PC, Xbox and


  1. The Architecture of the Kapow Systems Engine by Jacob Marner, M.Sc. Architecture Manager Deadline Games

  2. What is Kapow Systems? • Production tool for making games – A sand box • Cross platform run-time system – Supports PC, Xbox and PlayStation 2 • Box of tools for making game – No game specific components • Was used to create Total Overdose

  3. Key Features • Integrated editor • Fragments • Entity type Database • Memory management system • Cross platform asset generation • TNT script language

  4. Layered Architecture Main Kapow Engine class Plugins Animation Mockup system Particle systems Path finding Physics system Editor Editor system Kernel Scene graph Asset system Entity database Collision system Script system classes Libs Adapter (The hardware Toolbox Math Freetype Multistream abstraction layer) Memory Editor library zlib Photon mapper Expat Manager

  5. Entity type Database • Run time type information (RTTI) system • Used for multiple purposes: – Automatic GUI generation – Saving and loading scenes / fragments – Script interface – Saved games – Rewind system – Later: Undo in editor

  6. Entity type Database, cont. class Model : public Node { ... void Register() { tModel = new EntityType("Model"); tModel->InheritFrom(tNode); tModel->SetCreator((CREATOR)Create); ... tModel->RegisterProperty( "hard_alpha_factor", tNUMBER, FLOAT_GETTER(Model::GetHardAlphaFactor), FLOAT_SETTER(Model::SetHardAlphaFactor), "control=slider|min=0|max=1"); ... } ... };

  7. Asset Generation First use of asset after change of original version (in editor) <<slow load>> <<auto-generates>> <<becomes>> 3D Max model XML file (.model Native file Editor (.max file) file) (.model_pc) Subsequent uses (in editor) <<fast load>> Native file Editor (.model_pc) Asset path for Asset block generation <<generates>> Asset block (e.g. Editor a .map file) Release build Asset path <<fast load>> Asset block (e.g. Release run- a .map file) time system

  8. Memory Management • Consoles have no virtual memory! Fragmentation is a big problem. • We segment memory and make a seperate allocator for each: – Frame based allocator for game levels – First fit allocator for small temporary things – Best fit allocator with flushing for renderlists. – Best fit allocator with defragmenting support for script objects. – The system malloc() for the rest.

  9. Questions? jobs@deadlinegames.com

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend