SlideShare uma empresa Scribd logo
1 de 42
Baixar para ler offline
Ready to Play:
                        JavaScript / HTML5
                        Game Development
                               @zacharyjohnson
                        http://www.zachstronaut.com/



Friday, June 10, 2011
What does HTML5 have
              to do with video games?


Friday, June 10, 2011
And what the hell is
                         HTML5 anyway?
                 Mostly, HTML5 the markup language, is just a
                  bunch of new tags like: <canvas>, <audio>,
                          <video>, <article>, <nav> ...



Friday, June 10, 2011
And what the hell is
                         HTML5 anyway?
                ... but, HTML5 the marketing buzz word, has
             come to mean: all those new tags, plus CSS3 and
               highly optimized browser JavaScript engines.



Friday, June 10, 2011
Can I actually use
                         this stuff now?


Friday, June 10, 2011
Yes, let’s start with
                  <canvas> and <audio>!


Friday, June 10, 2011
<audio> lets you play... audio.
                        Background music, sound effects, volume
                               control, multiple channels.

                           Basic and generic JavaScript API.



Friday, June 10, 2011
<canvas> is a 2D
                            drawing surface.
                   Low level pixel manipulation or higher level
                 functions to draw paths, images, circles, etc.

                    Generic JavaScript API, not game-specific.


Friday, June 10, 2011
Can I see it in action?
                           Why yes! Yes you can!




Friday, June 10, 2011
Commander Clone
                          http://a.stronaut.com/z1e

                             -<canvas> and <audio>
                               -Akihabara Engine
                        -Experimental Gameplay Project


Friday, June 10, 2011
Re-Infiltration at Dusk
                          http://a.stronaut.com/z1b

                           -<canvas> and <audio>
                              -Custom Engine


Friday, June 10, 2011
Works in Safari,
              Chrome, Firefox, Opera,
                      and...

Friday, June 10, 2011
... [drum roll] ...


Friday, June 10, 2011
... Internet Explorer 9!


Friday, June 10, 2011
[applause]


Friday, June 10, 2011
Yeah but it probably sucks
                               in IE right?
                No, actually it is crazy fast in IE9 because it is
                     hardware accelerated via DirectX.




Friday, June 10, 2011
Good point Zach, how is the
                        performance of <canvas>?
                                Why thank you.




Friday, June 10, 2011
Performance of <canvas>
                        on your desktop/laptop is
                               very good.
                 Hardware acceleration of graphics in Chrome
                  and IE9, partial acceleration in Safari and
                         Firefox... rapidly progressing.



Friday, June 10, 2011
How good is very good?
              You could get 60 FPS if you made Tiny Wings or
             Angry Birds or Super Mario World or Zelda: A Link
                                to the Past.



Friday, June 10, 2011
What about the physics part of
                    Angry Birds though?
                        HTML5’s <canvas> only gives you
                          a place to draw graphics...




Friday, June 10, 2011
Fast JavaScript engines
                              to the rescue!
                        There are now at least two ports of the
                         Box2D physics library to JavaScript.




Friday, June 10, 2011
Impact Demo
                        http://impactjs.com/demos/physics/




Friday, June 10, 2011
2D Physics / 3D Blocks
                          http://a.stronaut.com/z1i

                           -NO <canvas> this time
                              -HTML and CSS3
                                 -Box2D.js


Friday, June 10, 2011
So you don’t have to use
                        <canvas> to make a game?
                  Sometimes it is better to use your web
              development skillz and make all your sprites and
                       layers with HTML and CSS.



Friday, June 10, 2011
When/why would I use
                              HTML/CSS?
                           -High level, can shorten dev cycle
                         -Can be more backwards compatible
                        -Can outperform <canvas> on mobile/
                                     iOS (for now)


Friday, June 10, 2011
If I make a game with HTML5
                    and JavaScript won’t it just
                           work on iOS?
                          Well... that depends!




Friday, June 10, 2011
So what are the gotchyas for
                      mobile HTML5 games?
                  -<audio> is crippled in mobile web browser
             -<canvas> is slow, not yet hardware accelerated
                 -HTML/CSS *do* have some acceleration!!
                -Should use touch events, not mouse events
               -JavaScript engine slower, trouble with math-
                          heavy things like physics

Friday, June 10, 2011
That sounds like a lot of
                              problems...
             Actually there are plenty of games you can make
                 for mobile phones with “HTML5” and a
                 commercial market is already forming.



Friday, June 10, 2011
Are there any tools to help me?
                        Sure, let me tell you about a few tools...




Friday, June 10, 2011
Akihabara
                        http://www.kesiev.com/akihabara/

                    -<canvas> based game library/framework
                       -Free and open source (MIT license)
                          -several game genre examples
                       -mobile web support out-of-the-box,
                     but keep your game and graphics simple


Friday, June 10, 2011
Impact
                             http://impactjs.com/

                    -<canvas> based game library/framework
                      -$99 flat fee, supports custom modules
                                 -Visual level editor
                        -Box2D physics already plugged in
                          -mobile support out-of-the-box,
                    web *AND* beta conversion tool to make a
                              native OpenGL iOS app

Friday, June 10, 2011
What about distribution?
                 Of course you can put your HTML5 game on a
                 web site, but there are other options as well...




Friday, June 10, 2011
Titanium
                        http://www.appcelerator.com/

                             -Free and open source
                   -Package game as native app for Windows,
                   Linux, Mac, Mac App Store, iOS App Store,
                                    Android.


Friday, June 10, 2011
See also...
              PhoneGap, NimbleKit, Chrome Web Store, and a
             reminder: Impact can port to iOS (alpha support)




Friday, June 10, 2011
Aren’t you forgetting
                    something? You haven’t said
                         much about 3D...
                  That’s because all the good games are in 2D.

                                   I kid, I kid.



Friday, June 10, 2011
Quickly, let me mention WebGL
                   -WebGL is an implementation of OpenGL
                  -It is hardware accelerated and low level
               -GL pros will be right at home with shaders, etc.
                  -Google already ported Quake II to WebGL



Friday, June 10, 2011
That sounds spiffy, when can I
                           use that?
                You can use it now in Chrome 10 and Firefox 4.
                Safari support is imminent, and Opera support
                                   will follow.

                        NO <3 on Internet Explorer or iOS.

Friday, June 10, 2011
Anything else I should know?
              Yeah... come to think of it you should know about
                 Web Sockets. This brings network i/o for
               multiplayer games to Safari, Chrome, and iOS
                      with Firefox support coming soon.

                        Check out: http://caniuse.com/


Friday, June 10, 2011
Thanks, do you have a
                           closing thought?
               Yes... web technology is moving so rapidly that,
                the longer your game’s dev cycle is, the more
                  compelling JavaScript / HTML5 become!



Friday, June 10, 2011
It’s dangerous to go alone!
                                 Take this!
                            http://a.stronaut.com/z1g




Friday, June 10, 2011
I’ve got a question!
                           I’ve got an answer!




Friday, June 10, 2011
Thank You


Friday, June 10, 2011

Mais conteúdo relacionado

Semelhante a Ready to Play: JavaScript / HTML5 Game Development

YOU WILL REGRET THIS
YOU WILL REGRET THISYOU WILL REGRET THIS
YOU WILL REGRET THISMononcQc
 
Modern Browser Support
Modern Browser SupportModern Browser Support
Modern Browser SupportMark Meeker
 
HTML5 & JavaScript Games
HTML5 & JavaScript GamesHTML5 & JavaScript Games
HTML5 & JavaScript GamesRobin Hawkes
 
BSGO - next generation browser game development with unity3 d 1.5
BSGO - next generation browser game development with unity3 d 1.5BSGO - next generation browser game development with unity3 d 1.5
BSGO - next generation browser game development with unity3 d 1.5Nick Porsche
 
Bringing HTML5 Video to Mobile Devices
Bringing HTML5 Video to Mobile DevicesBringing HTML5 Video to Mobile Devices
Bringing HTML5 Video to Mobile DevicesBrian Crescimanno
 
Android Development Slides
Android Development SlidesAndroid Development Slides
Android Development SlidesVictor Miclovich
 
3D in the Browser via WebGL: It's Go Time
3D in the Browser via WebGL: It's Go Time 3D in the Browser via WebGL: It's Go Time
3D in the Browser via WebGL: It's Go Time Pascal Rettig
 
node.js for front-end developers
node.js for front-end developersnode.js for front-end developers
node.js for front-end developersGarann Means
 
Boston Globe: Responsive Web Design
Boston Globe: Responsive Web DesignBoston Globe: Responsive Web Design
Boston Globe: Responsive Web DesignThe Media Consortium
 
Mobile Web on Drupal!
Mobile Web on Drupal!Mobile Web on Drupal!
Mobile Web on Drupal!Lyza Gardner
 
"Probably, Maybe, No: The State of HTML5 Audio" - Scott Schiller
"Probably, Maybe, No: The State of HTML5 Audio" - Scott Schiller"Probably, Maybe, No: The State of HTML5 Audio" - Scott Schiller
"Probably, Maybe, No: The State of HTML5 Audio" - Scott Schillerscottschiller
 
Sencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScript
Sencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScriptSencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScript
Sencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScriptDavid Kaneda
 
A Look at the Future of HTML5
A Look at the Future of HTML5A Look at the Future of HTML5
A Look at the Future of HTML5Tim Wright
 
RIA Unleashed - Developing for the TV with litl os
RIA Unleashed - Developing for the TV with litl osRIA Unleashed - Developing for the TV with litl os
RIA Unleashed - Developing for the TV with litl osryancanulla
 
Web performance at WDCNZ
Web performance at WDCNZWeb performance at WDCNZ
Web performance at WDCNZJohn Clegg
 
Smart phone development
Smart phone developmentSmart phone development
Smart phone developmentMyles Eftos
 
Using JavaScript for Mobile Development
Using JavaScript for Mobile DevelopmentUsing JavaScript for Mobile Development
Using JavaScript for Mobile DevelopmentStephen G
 
Play with html games
Play with html gamesPlay with html games
Play with html gamesHuan Du
 
Koss, How to make desktop caliber browser apps
Koss, How to make desktop caliber browser appsKoss, How to make desktop caliber browser apps
Koss, How to make desktop caliber browser appsEvil Martians
 

Semelhante a Ready to Play: JavaScript / HTML5 Game Development (20)

YOU WILL REGRET THIS
YOU WILL REGRET THISYOU WILL REGRET THIS
YOU WILL REGRET THIS
 
Modern Browser Support
Modern Browser SupportModern Browser Support
Modern Browser Support
 
HTML5 & JavaScript Games
HTML5 & JavaScript GamesHTML5 & JavaScript Games
HTML5 & JavaScript Games
 
BSGO - next generation browser game development with unity3 d 1.5
BSGO - next generation browser game development with unity3 d 1.5BSGO - next generation browser game development with unity3 d 1.5
BSGO - next generation browser game development with unity3 d 1.5
 
Bringing HTML5 Video to Mobile Devices
Bringing HTML5 Video to Mobile DevicesBringing HTML5 Video to Mobile Devices
Bringing HTML5 Video to Mobile Devices
 
Android Development Slides
Android Development SlidesAndroid Development Slides
Android Development Slides
 
3D in the Browser via WebGL: It's Go Time
3D in the Browser via WebGL: It's Go Time 3D in the Browser via WebGL: It's Go Time
3D in the Browser via WebGL: It's Go Time
 
node.js for front-end developers
node.js for front-end developersnode.js for front-end developers
node.js for front-end developers
 
Boston Globe: Responsive Web Design
Boston Globe: Responsive Web DesignBoston Globe: Responsive Web Design
Boston Globe: Responsive Web Design
 
Mobile Web on Drupal!
Mobile Web on Drupal!Mobile Web on Drupal!
Mobile Web on Drupal!
 
"Probably, Maybe, No: The State of HTML5 Audio" - Scott Schiller
"Probably, Maybe, No: The State of HTML5 Audio" - Scott Schiller"Probably, Maybe, No: The State of HTML5 Audio" - Scott Schiller
"Probably, Maybe, No: The State of HTML5 Audio" - Scott Schiller
 
Sencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScript
Sencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScriptSencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScript
Sencha Touch beta — Amazing Mobile Web Apps with HTML5, CSS3 & JavaScript
 
A Look at the Future of HTML5
A Look at the Future of HTML5A Look at the Future of HTML5
A Look at the Future of HTML5
 
RIA Unleashed - Developing for the TV with litl os
RIA Unleashed - Developing for the TV with litl osRIA Unleashed - Developing for the TV with litl os
RIA Unleashed - Developing for the TV with litl os
 
Web performance at WDCNZ
Web performance at WDCNZWeb performance at WDCNZ
Web performance at WDCNZ
 
Smart phone development
Smart phone developmentSmart phone development
Smart phone development
 
Using JavaScript for Mobile Development
Using JavaScript for Mobile DevelopmentUsing JavaScript for Mobile Development
Using JavaScript for Mobile Development
 
Groke
GrokeGroke
Groke
 
Play with html games
Play with html gamesPlay with html games
Play with html games
 
Koss, How to make desktop caliber browser apps
Koss, How to make desktop caliber browser appsKoss, How to make desktop caliber browser apps
Koss, How to make desktop caliber browser apps
 

Último

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 

Último (20)

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 

Ready to Play: JavaScript / HTML5 Game Development

  • 1. Ready to Play: JavaScript / HTML5 Game Development @zacharyjohnson http://www.zachstronaut.com/ Friday, June 10, 2011
  • 2. What does HTML5 have to do with video games? Friday, June 10, 2011
  • 3. And what the hell is HTML5 anyway? Mostly, HTML5 the markup language, is just a bunch of new tags like: <canvas>, <audio>, <video>, <article>, <nav> ... Friday, June 10, 2011
  • 4. And what the hell is HTML5 anyway? ... but, HTML5 the marketing buzz word, has come to mean: all those new tags, plus CSS3 and highly optimized browser JavaScript engines. Friday, June 10, 2011
  • 5. Can I actually use this stuff now? Friday, June 10, 2011
  • 6. Yes, let’s start with <canvas> and <audio>! Friday, June 10, 2011
  • 7. <audio> lets you play... audio. Background music, sound effects, volume control, multiple channels. Basic and generic JavaScript API. Friday, June 10, 2011
  • 8. <canvas> is a 2D drawing surface. Low level pixel manipulation or higher level functions to draw paths, images, circles, etc. Generic JavaScript API, not game-specific. Friday, June 10, 2011
  • 9. Can I see it in action? Why yes! Yes you can! Friday, June 10, 2011
  • 10. Commander Clone http://a.stronaut.com/z1e -<canvas> and <audio> -Akihabara Engine -Experimental Gameplay Project Friday, June 10, 2011
  • 11. Re-Infiltration at Dusk http://a.stronaut.com/z1b -<canvas> and <audio> -Custom Engine Friday, June 10, 2011
  • 12. Works in Safari, Chrome, Firefox, Opera, and... Friday, June 10, 2011
  • 13. ... [drum roll] ... Friday, June 10, 2011
  • 14. ... Internet Explorer 9! Friday, June 10, 2011
  • 16. Yeah but it probably sucks in IE right? No, actually it is crazy fast in IE9 because it is hardware accelerated via DirectX. Friday, June 10, 2011
  • 17. Good point Zach, how is the performance of <canvas>? Why thank you. Friday, June 10, 2011
  • 18. Performance of <canvas> on your desktop/laptop is very good. Hardware acceleration of graphics in Chrome and IE9, partial acceleration in Safari and Firefox... rapidly progressing. Friday, June 10, 2011
  • 19. How good is very good? You could get 60 FPS if you made Tiny Wings or Angry Birds or Super Mario World or Zelda: A Link to the Past. Friday, June 10, 2011
  • 20. What about the physics part of Angry Birds though? HTML5’s <canvas> only gives you a place to draw graphics... Friday, June 10, 2011
  • 21. Fast JavaScript engines to the rescue! There are now at least two ports of the Box2D physics library to JavaScript. Friday, June 10, 2011
  • 22. Impact Demo http://impactjs.com/demos/physics/ Friday, June 10, 2011
  • 23. 2D Physics / 3D Blocks http://a.stronaut.com/z1i -NO <canvas> this time -HTML and CSS3 -Box2D.js Friday, June 10, 2011
  • 24. So you don’t have to use <canvas> to make a game? Sometimes it is better to use your web development skillz and make all your sprites and layers with HTML and CSS. Friday, June 10, 2011
  • 25. When/why would I use HTML/CSS? -High level, can shorten dev cycle -Can be more backwards compatible -Can outperform <canvas> on mobile/ iOS (for now) Friday, June 10, 2011
  • 26. If I make a game with HTML5 and JavaScript won’t it just work on iOS? Well... that depends! Friday, June 10, 2011
  • 27. So what are the gotchyas for mobile HTML5 games? -<audio> is crippled in mobile web browser -<canvas> is slow, not yet hardware accelerated -HTML/CSS *do* have some acceleration!! -Should use touch events, not mouse events -JavaScript engine slower, trouble with math- heavy things like physics Friday, June 10, 2011
  • 28. That sounds like a lot of problems... Actually there are plenty of games you can make for mobile phones with “HTML5” and a commercial market is already forming. Friday, June 10, 2011
  • 29. Are there any tools to help me? Sure, let me tell you about a few tools... Friday, June 10, 2011
  • 30. Akihabara http://www.kesiev.com/akihabara/ -<canvas> based game library/framework -Free and open source (MIT license) -several game genre examples -mobile web support out-of-the-box, but keep your game and graphics simple Friday, June 10, 2011
  • 31. Impact http://impactjs.com/ -<canvas> based game library/framework -$99 flat fee, supports custom modules -Visual level editor -Box2D physics already plugged in -mobile support out-of-the-box, web *AND* beta conversion tool to make a native OpenGL iOS app Friday, June 10, 2011
  • 32. What about distribution? Of course you can put your HTML5 game on a web site, but there are other options as well... Friday, June 10, 2011
  • 33. Titanium http://www.appcelerator.com/ -Free and open source -Package game as native app for Windows, Linux, Mac, Mac App Store, iOS App Store, Android. Friday, June 10, 2011
  • 34. See also... PhoneGap, NimbleKit, Chrome Web Store, and a reminder: Impact can port to iOS (alpha support) Friday, June 10, 2011
  • 35. Aren’t you forgetting something? You haven’t said much about 3D... That’s because all the good games are in 2D. I kid, I kid. Friday, June 10, 2011
  • 36. Quickly, let me mention WebGL -WebGL is an implementation of OpenGL -It is hardware accelerated and low level -GL pros will be right at home with shaders, etc. -Google already ported Quake II to WebGL Friday, June 10, 2011
  • 37. That sounds spiffy, when can I use that? You can use it now in Chrome 10 and Firefox 4. Safari support is imminent, and Opera support will follow. NO <3 on Internet Explorer or iOS. Friday, June 10, 2011
  • 38. Anything else I should know? Yeah... come to think of it you should know about Web Sockets. This brings network i/o for multiplayer games to Safari, Chrome, and iOS with Firefox support coming soon. Check out: http://caniuse.com/ Friday, June 10, 2011
  • 39. Thanks, do you have a closing thought? Yes... web technology is moving so rapidly that, the longer your game’s dev cycle is, the more compelling JavaScript / HTML5 become! Friday, June 10, 2011
  • 40. It’s dangerous to go alone! Take this! http://a.stronaut.com/z1g Friday, June 10, 2011
  • 41. I’ve got a question! I’ve got an answer! Friday, June 10, 2011

Notas do Editor

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n