SlideShare une entreprise Scribd logo
1  sur  21
Modeling Patterns for JavaScript Browser-Based Games JarodLong           Ray Toal Loyola Marymount University Los Angeles, CA USA 2011-05-16
Topics	 Overview of Contributions Challenges for Browser-Based Games What’s new with JavaScript Patterns vs. Frameworks Contributions in Detail JavaScript and HTML5 Game Engines Summary
Contributions Development of JavaScript design patterns specifically for modules and types Note: patterns, not frameworks Patterns are independent of game engine Application of these patterns in a 2-D, physics-based, HTML5 game Survey of JavaScript game engines
Browser-Based Game Issues Rich domain models  OOP was motivated by graphical applications Graphics and physics engines Can mix Canvas and the DOM  don’t forget CSS! (esp. CSS3) Full source code visibility Ajax High score lists difficult to implement
JavaScript The most popular language for programming the client-side web (competes with Flash and Java) Created in 1996 but only “understood” in mid 2000s Recent Advances ECMAScript 5 V8 and other modern engines (>100x faster) Server-side (e.g., node.js) (BIG FUTURE IN THIS)
JavaScript Overview Array and object literals varx = [3, “true”, 2.2]; var point = {lat: 27.95, lon: -140.4}; A functional programming language -- closer to Scheme than C myArray.map(function (x) {return x * x;}); data.map(square).filter(isOdd).reduce(plus); Prototypes, not classes varmyCircle = Object.create(yourCircle); myCircle.color = “rgb(23,100, 122)”;
Software Modeling Games are naturally event-driven and feature an object-oriented architecture Modules and Types Common types: vector, sprite, fortress, level, weapon, enemy, projectile, … Common modules (singletons): math, world, camera, game, util, ui, input, contact, …  How can these be represented in JavaScript?
JavaScript Prototypes varc = { x: 0, y: 0,      radius: 1,     color: black }; var c1 = Object.create(c); c1.x = 3; c1.color = "green"; var c2 = Object.create(c); c1.x = 4; c1.radius = 15; var c3 = Object.create(c); assert(c2.color === "black"); The prototype is NOT a "class" object
Shared Behavior in Prototypes varc = { x: 0, y: 0, radius: 1, color: black,     area: function () {return this.radius * Math.PI * Math.PI;},     . . . }; Because we don't want separate function copies in each object
Inheritance ,[object Object]
  But how to do "super"?  Do we care?,[object Object]
A Module Pattern <package>.M = (function () { var privatePropertyOrMethod1 = …;     … var M = {};     M.publicProperty1 = …;     M.publicMethod1 = function (…) {…};     …     return M; }()); Already familiar to JavaScript professionals (We just prefer avoiding object literals)
Type Pattern <package>.T = (function () { var T = {};     ... T.create = function (…) { vart = Object.create(this);         ...         return t;     }     return T; }()); Instantiate with:  varx = <package>.T.create(…); The "type" object and the prototype are one!  Differs from operator new, which equates the type with the constructor (prototype separate) Shared properties and methods go here Assign the own properties here
Root Types <package>.GameObject = (function () { varGameObject = {}; GameObject.GameObject = GameObject; GameObject.create = function (id) { varg = Object.create(this); g.id = id;         return g;     } GameObject.update = function () { alert("Updating game object " + this.id);     }     return GameObject; }()); Self reference will allow multiple levels of "super" Of course we are going to override this on the next slide
Subtypes <package>.Projectile = (function () { var Projectile = Object.create(<package>.GameObject); Projectile.Projectile = Projectile; Projectile.create = function (id, name) { varp = <package>.GameObject.create.call(this, id); p.name = name;         return p;     } Projectile.update = function () {  // override! this.GameObject.update.call(this); alert("Updating projectile " + this.name);     }        return Projectile; }()); Note use of "this" instead of the package name – it shows we are using an ancestor type
Subtypes, Slightly Cleaner <package>.Projectile = (function (supertype) { var Projectile = Object.create(supertype); Projectile.Projectile = Projectile; Projectile.create = function (id, name) { varp = supertype.create.call(this, id); p.name = name;         return p;     } Projectile.update = function () {  // override! supertype.update.call(this); alert("Updating projectile " + this.name);     }        return Projectile; }(package.GameObject)); Or mention an ancestor type directly
How it all Looks Private data from closures not shown
Applications http://manicmonkeymadness.googlecode.com
Why is this Useful? No extra scripts to include No framework to learn  No need to say "new Base" and ".extend" "Super" functionality is still available if needed Programmer can apply the pattern selectively It's real JavaScript  Closures and Function.call are hardcore Maintains prototypal feel, even though class-like Type.create()
JavaScript Game Engines The Render Engine Impact Aves (Zynga Germany) Effect Isogenic gameQuery Rocket Engine (acquired by Disney) See engine lists and comparisons at https://github.com/bebraw/jswiki/wiki/Game-Engines and http://www.cssgalleries.com/2011/02/the-big-list-of-javascript-game-engines/
Summary Games benefit from an object-oriented, event-driven architecture Many approaches exist for modeling an OO software architecture in JavaScript We presented framework-free, engine independent modeling patterns Patterns were applied in a real HTML5, no-Flash application

Contenu connexe

Similaire à Modeling Patterns for JavaScript Browser-Based Games

JavaScript Growing Up
JavaScript Growing UpJavaScript Growing Up
JavaScript Growing UpDavid Padbury
 
Smoothing Your Java with DSLs
Smoothing Your Java with DSLsSmoothing Your Java with DSLs
Smoothing Your Java with DSLsintelliyole
 
HTML5 for the Silverlight Guy
HTML5 for the Silverlight GuyHTML5 for the Silverlight Guy
HTML5 for the Silverlight GuyDavid Padbury
 
WebGL: GPU acceleration for the open web
WebGL: GPU acceleration for the open webWebGL: GPU acceleration for the open web
WebGL: GPU acceleration for the open webpjcozzi
 
The curious Life of JavaScript - Talk at SI-SE 2015
The curious Life of JavaScript - Talk at SI-SE 2015The curious Life of JavaScript - Talk at SI-SE 2015
The curious Life of JavaScript - Talk at SI-SE 2015jbandi
 
Groovy Introduction - JAX Germany - 2008
Groovy Introduction - JAX Germany - 2008Groovy Introduction - JAX Germany - 2008
Groovy Introduction - JAX Germany - 2008Guillaume Laforge
 
Xopus Application Framework
Xopus Application FrameworkXopus Application Framework
Xopus Application FrameworkJady Yang
 
JavaScript 2.0 in Dreamweaver CS4
JavaScript 2.0 in Dreamweaver CS4JavaScript 2.0 in Dreamweaver CS4
JavaScript 2.0 in Dreamweaver CS4alexsaves
 
Professional JavaScript: AntiPatterns
Professional JavaScript: AntiPatternsProfessional JavaScript: AntiPatterns
Professional JavaScript: AntiPatternsMike Wilcox
 
JavaScript Miller Columns
JavaScript Miller ColumnsJavaScript Miller Columns
JavaScript Miller ColumnsJonathan Fine
 
Laurens Van Den Oever Xopus Presentation
Laurens Van Den Oever Xopus PresentationLaurens Van Den Oever Xopus Presentation
Laurens Van Den Oever Xopus PresentationAjax Experience 2009
 
Sencha / ExtJS : Object Oriented JavaScript
Sencha / ExtJS : Object Oriented JavaScriptSencha / ExtJS : Object Oriented JavaScript
Sencha / ExtJS : Object Oriented JavaScriptRohan Chandane
 
Javascript unit testing, yes we can e big
Javascript unit testing, yes we can   e bigJavascript unit testing, yes we can   e big
Javascript unit testing, yes we can e bigAndy Peterson
 
JavaOne 2008 - TS-5793 - Groovy and Grails, changing the landscape of Java EE...
JavaOne 2008 - TS-5793 - Groovy and Grails, changing the landscape of Java EE...JavaOne 2008 - TS-5793 - Groovy and Grails, changing the landscape of Java EE...
JavaOne 2008 - TS-5793 - Groovy and Grails, changing the landscape of Java EE...Guillaume Laforge
 
eXo SEA - JavaScript Introduction Training
eXo SEA - JavaScript Introduction TrainingeXo SEA - JavaScript Introduction Training
eXo SEA - JavaScript Introduction TrainingHoat Le
 
Java Programming for Designers
Java Programming for DesignersJava Programming for Designers
Java Programming for DesignersR. Sosa
 

Similaire à Modeling Patterns for JavaScript Browser-Based Games (20)

JavaScript Growing Up
JavaScript Growing UpJavaScript Growing Up
JavaScript Growing Up
 
Smoothing Your Java with DSLs
Smoothing Your Java with DSLsSmoothing Your Java with DSLs
Smoothing Your Java with DSLs
 
HTML5 for the Silverlight Guy
HTML5 for the Silverlight GuyHTML5 for the Silverlight Guy
HTML5 for the Silverlight Guy
 
WebGL: GPU acceleration for the open web
WebGL: GPU acceleration for the open webWebGL: GPU acceleration for the open web
WebGL: GPU acceleration for the open web
 
The curious Life of JavaScript - Talk at SI-SE 2015
The curious Life of JavaScript - Talk at SI-SE 2015The curious Life of JavaScript - Talk at SI-SE 2015
The curious Life of JavaScript - Talk at SI-SE 2015
 
Groovy Introduction - JAX Germany - 2008
Groovy Introduction - JAX Germany - 2008Groovy Introduction - JAX Germany - 2008
Groovy Introduction - JAX Germany - 2008
 
Javascript Design Patterns
Javascript Design PatternsJavascript Design Patterns
Javascript Design Patterns
 
Xopus Application Framework
Xopus Application FrameworkXopus Application Framework
Xopus Application Framework
 
JavaScript 2.0 in Dreamweaver CS4
JavaScript 2.0 in Dreamweaver CS4JavaScript 2.0 in Dreamweaver CS4
JavaScript 2.0 in Dreamweaver CS4
 
Professional JavaScript: AntiPatterns
Professional JavaScript: AntiPatternsProfessional JavaScript: AntiPatterns
Professional JavaScript: AntiPatterns
 
JavaScript Miller Columns
JavaScript Miller ColumnsJavaScript Miller Columns
JavaScript Miller Columns
 
Laurens Van Den Oever Xopus Presentation
Laurens Van Den Oever Xopus PresentationLaurens Van Den Oever Xopus Presentation
Laurens Van Den Oever Xopus Presentation
 
Modern frontend in react.js
Modern frontend in react.jsModern frontend in react.js
Modern frontend in react.js
 
GWT Extreme!
GWT Extreme!GWT Extreme!
GWT Extreme!
 
Sencha / ExtJS : Object Oriented JavaScript
Sencha / ExtJS : Object Oriented JavaScriptSencha / ExtJS : Object Oriented JavaScript
Sencha / ExtJS : Object Oriented JavaScript
 
"Javascript" por Tiago Rodrigues
"Javascript" por Tiago Rodrigues"Javascript" por Tiago Rodrigues
"Javascript" por Tiago Rodrigues
 
Javascript unit testing, yes we can e big
Javascript unit testing, yes we can   e bigJavascript unit testing, yes we can   e big
Javascript unit testing, yes we can e big
 
JavaOne 2008 - TS-5793 - Groovy and Grails, changing the landscape of Java EE...
JavaOne 2008 - TS-5793 - Groovy and Grails, changing the landscape of Java EE...JavaOne 2008 - TS-5793 - Groovy and Grails, changing the landscape of Java EE...
JavaOne 2008 - TS-5793 - Groovy and Grails, changing the landscape of Java EE...
 
eXo SEA - JavaScript Introduction Training
eXo SEA - JavaScript Introduction TrainingeXo SEA - JavaScript Introduction Training
eXo SEA - JavaScript Introduction Training
 
Java Programming for Designers
Java Programming for DesignersJava Programming for Designers
Java Programming for Designers
 

Plus de Ray Toal

Git workshop
Git workshopGit workshop
Git workshopRay Toal
 
Learning and Modern Programming Languages
Learning and Modern Programming LanguagesLearning and Modern Programming Languages
Learning and Modern Programming LanguagesRay Toal
 
Java best practices
Java best practicesJava best practices
Java best practicesRay Toal
 
unittest in 5 minutes
unittest in 5 minutesunittest in 5 minutes
unittest in 5 minutesRay Toal
 
Convention-Based Syntactic Descriptions
Convention-Based Syntactic DescriptionsConvention-Based Syntactic Descriptions
Convention-Based Syntactic DescriptionsRay Toal
 
An Annotation Framework for Statically-Typed Syntax Trees
An Annotation Framework for Statically-Typed Syntax TreesAn Annotation Framework for Statically-Typed Syntax Trees
An Annotation Framework for Statically-Typed Syntax TreesRay Toal
 
Economics of Open Source Software
Economics of Open Source SoftwareEconomics of Open Source Software
Economics of Open Source SoftwareRay Toal
 

Plus de Ray Toal (7)

Git workshop
Git workshopGit workshop
Git workshop
 
Learning and Modern Programming Languages
Learning and Modern Programming LanguagesLearning and Modern Programming Languages
Learning and Modern Programming Languages
 
Java best practices
Java best practicesJava best practices
Java best practices
 
unittest in 5 minutes
unittest in 5 minutesunittest in 5 minutes
unittest in 5 minutes
 
Convention-Based Syntactic Descriptions
Convention-Based Syntactic DescriptionsConvention-Based Syntactic Descriptions
Convention-Based Syntactic Descriptions
 
An Annotation Framework for Statically-Typed Syntax Trees
An Annotation Framework for Statically-Typed Syntax TreesAn Annotation Framework for Statically-Typed Syntax Trees
An Annotation Framework for Statically-Typed Syntax Trees
 
Economics of Open Source Software
Economics of Open Source SoftwareEconomics of Open Source Software
Economics of Open Source Software
 

Dernier

Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 

Dernier (20)

Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 

Modeling Patterns for JavaScript Browser-Based Games

  • 1. Modeling Patterns for JavaScript Browser-Based Games JarodLong Ray Toal Loyola Marymount University Los Angeles, CA USA 2011-05-16
  • 2. Topics Overview of Contributions Challenges for Browser-Based Games What’s new with JavaScript Patterns vs. Frameworks Contributions in Detail JavaScript and HTML5 Game Engines Summary
  • 3. Contributions Development of JavaScript design patterns specifically for modules and types Note: patterns, not frameworks Patterns are independent of game engine Application of these patterns in a 2-D, physics-based, HTML5 game Survey of JavaScript game engines
  • 4. Browser-Based Game Issues Rich domain models OOP was motivated by graphical applications Graphics and physics engines Can mix Canvas and the DOM don’t forget CSS! (esp. CSS3) Full source code visibility Ajax High score lists difficult to implement
  • 5. JavaScript The most popular language for programming the client-side web (competes with Flash and Java) Created in 1996 but only “understood” in mid 2000s Recent Advances ECMAScript 5 V8 and other modern engines (>100x faster) Server-side (e.g., node.js) (BIG FUTURE IN THIS)
  • 6. JavaScript Overview Array and object literals varx = [3, “true”, 2.2]; var point = {lat: 27.95, lon: -140.4}; A functional programming language -- closer to Scheme than C myArray.map(function (x) {return x * x;}); data.map(square).filter(isOdd).reduce(plus); Prototypes, not classes varmyCircle = Object.create(yourCircle); myCircle.color = “rgb(23,100, 122)”;
  • 7. Software Modeling Games are naturally event-driven and feature an object-oriented architecture Modules and Types Common types: vector, sprite, fortress, level, weapon, enemy, projectile, … Common modules (singletons): math, world, camera, game, util, ui, input, contact, … How can these be represented in JavaScript?
  • 8. JavaScript Prototypes varc = { x: 0, y: 0, radius: 1, color: black }; var c1 = Object.create(c); c1.x = 3; c1.color = "green"; var c2 = Object.create(c); c1.x = 4; c1.radius = 15; var c3 = Object.create(c); assert(c2.color === "black"); The prototype is NOT a "class" object
  • 9. Shared Behavior in Prototypes varc = { x: 0, y: 0, radius: 1, color: black, area: function () {return this.radius * Math.PI * Math.PI;}, . . . }; Because we don't want separate function copies in each object
  • 10.
  • 11.
  • 12. A Module Pattern <package>.M = (function () { var privatePropertyOrMethod1 = …; … var M = {}; M.publicProperty1 = …; M.publicMethod1 = function (…) {…}; … return M; }()); Already familiar to JavaScript professionals (We just prefer avoiding object literals)
  • 13. Type Pattern <package>.T = (function () { var T = {}; ... T.create = function (…) { vart = Object.create(this); ... return t; } return T; }()); Instantiate with: varx = <package>.T.create(…); The "type" object and the prototype are one! Differs from operator new, which equates the type with the constructor (prototype separate) Shared properties and methods go here Assign the own properties here
  • 14. Root Types <package>.GameObject = (function () { varGameObject = {}; GameObject.GameObject = GameObject; GameObject.create = function (id) { varg = Object.create(this); g.id = id; return g; } GameObject.update = function () { alert("Updating game object " + this.id); } return GameObject; }()); Self reference will allow multiple levels of "super" Of course we are going to override this on the next slide
  • 15. Subtypes <package>.Projectile = (function () { var Projectile = Object.create(<package>.GameObject); Projectile.Projectile = Projectile; Projectile.create = function (id, name) { varp = <package>.GameObject.create.call(this, id); p.name = name; return p; } Projectile.update = function () { // override! this.GameObject.update.call(this); alert("Updating projectile " + this.name); } return Projectile; }()); Note use of "this" instead of the package name – it shows we are using an ancestor type
  • 16. Subtypes, Slightly Cleaner <package>.Projectile = (function (supertype) { var Projectile = Object.create(supertype); Projectile.Projectile = Projectile; Projectile.create = function (id, name) { varp = supertype.create.call(this, id); p.name = name; return p; } Projectile.update = function () { // override! supertype.update.call(this); alert("Updating projectile " + this.name); } return Projectile; }(package.GameObject)); Or mention an ancestor type directly
  • 17. How it all Looks Private data from closures not shown
  • 19. Why is this Useful? No extra scripts to include No framework to learn No need to say "new Base" and ".extend" "Super" functionality is still available if needed Programmer can apply the pattern selectively It's real JavaScript Closures and Function.call are hardcore Maintains prototypal feel, even though class-like Type.create()
  • 20. JavaScript Game Engines The Render Engine Impact Aves (Zynga Germany) Effect Isogenic gameQuery Rocket Engine (acquired by Disney) See engine lists and comparisons at https://github.com/bebraw/jswiki/wiki/Game-Engines and http://www.cssgalleries.com/2011/02/the-big-list-of-javascript-game-engines/
  • 21. Summary Games benefit from an object-oriented, event-driven architecture Many approaches exist for modeling an OO software architecture in JavaScript We presented framework-free, engine independent modeling patterns Patterns were applied in a real HTML5, no-Flash application