Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Introduccion para desarrollo de juegos para la Web

La Web moderna rapidamente se ha convertido en una plataforma viable - no solo para crear impresionantes juegos de alta calidad, pero mas importante para distruibuirlos.
 
El rango de juegos que pueden ser creados...
Con tecnologias Web modernas y un navegador reciente es totalmente posible hacer impresionantes de primera categoria para la Web. Y no estamos hablando sobre juegos de cartas simples o juegos sociales multijugadores que en tiempos anteriores se podian hacer con Flash®. Estamos hablando sobre juegos 3D shooters de accion, RPGs, y mas. Gracias a las mejoras rendimiento masivo en JavaScript  con tecnologia compiladora justo-a-tiempo technology y nuevas APIs, tu puedes construir juegos que pueden correr en el navegador (o en dispositivos HTML5 como Firefox OS) sin hacer compromisos.
 

La plataforma de juegos HTML5

podemos pensar que la Web es una mejor plataforma para tu juego. Es como decimos "la Web es la plataforma". Busquemos en el nucleo de la plataforma Web:

Funcion Tecnologia
Audio Web Audio API
Graficos WebGL (OpenGL ES 2.0)
Entrada Touch events, Gamepad API, device sensors, WebRTC, Full Screen API, Pointer Lock API
Lenguaje JavaScript (o C/C++ usando Emscripten para compilar a JavaScript)
Networking WebRTC and/or WebSockets
Almacenamiento IndexedDB o la "nube"
Web HTML, CSS, SVG, Social API (and much more!)

Tipos de juegos

Juegos casuales

WebViews, entre otros..

Core games

WebGL, entre otros...

El caso de Exito

Como un desarrollador de juegos, cuando eres un estudio individual o grande, tu quieres conocer que te hace sentir usar la Web con tu proximo Juego. Veamos como la Web puede ayudarte.

Distribucion

Control

Monetizacion?

  1. The reach of the Web is enormous; it's everywhere. Games built with HTML5 work on smartphones, tablets, PCs and Smart TVs.
  2. Marketing and discoverability are improved. You're not limited to promoting your app on someone else's app store. Instead, you can advertise and promote your game all over the Web as well as other media, taking advantage of the Web's inherent linkability and shareability to reach new customers.
  3. You have control where it matters: Payments. You don't have to hand over 30% of your revenues to someone else just because your game is in their ecosystem. Instead, charge what you want and use whatever payment processing service you like.
  4. Again with more control, you can update your game whenever you want. No waiting breathlessly for approval while someone hidden within another company decides whether or not your critical bug fix will ship today or tomorrow.
  5. Control your analytics! Instead of relying on someone else to make all the decisions about what analytics you need, you can collect your own -- or choose the third party that you like the best -- to gather information about your sales and your game's reach.
  6. You get to manage your customer relationship more closely, in your own way. No more having customer feedback filtered through an app store's limited mechanisms. Engage with your customers the way you want to, without a middleman.
  7. Your players can play your game anywhere, anytime. Because the Web is ubiquitous, your customers can check their game's status on their phones, tablets, their home laptops, their work desktops, or anything else.

Web technologies for game developers

Note for Austin/other writers: were were intending to have a dedicated "Core technology reference" page linked form the main page, basically providing links to all the useful game-related reference stuff elsewhere on MDN. This section would best belong there. But for now, I'll leave it alone until you can call this article finished, just to avoid any confusion, and feeling of "where the hell's my stuff been moved to?" ;-)

For the tech folks, let's dig into the APIs the Web brings to the table that cater to game developers.

Here's a thorough list to give you a taste of what the Web can do for you:

Full Screen API
This simple API lets your game take over the entire screen, thereby immersing the player in action.
Gamepad API
If you want your users to be able to use gamepads or other game controllers to work your game, you'll need this API.
HTML and CSS
Together, these two technologies let you build, style, and lay out your game's user interface. Part of HTML is the <canvas> element, which provides one way to do 2D graphics.
HTML audio
The <audio> element lets you easily play simple sound effects and music. If your needs are more involved, check out the Web Audio API for real audio processing power!
IndexedDB
A powerful data storage API for maintaining user data on their own computer or device. A great way to save game state and other information locally so it doesn't have to be downloaded every time it's needed. Also useful to help make your game playable even when the user isn't connected to the Web (such as when they're stuck on an airplane for hours on end...).
JavaScript
JavaScript, the programming language used on the Web, is blazing fast in modern browsers and getting faster all the time. Use its power to write the code for your game, or look at using technologies like Emscripten or Asm.js to easily port your existing games.
Pointer Lock API
The Pointer Lock API lets you lock the mouse or other pointing device within your game's interface so that instead of absolute cursor positioning you receive coordinate deltas that give you more precise measurements of what the user is doing, and prevent the user from accidentally sending their input somewhere else, thereby missing important action.
SVG (Scalable Vector Graphics)
Lets you build vector graphics that scale smoothly regardless of the size or resolution of the user's display.
Typed Arrays
JavaScript typed arrays give you access to raw binary data from within JavaScript; this lets you manipulate GL textures, game data, or anything else, even if it's not in a native JavaScript format.
Web Audio API
This API for controlling the playback, synthesis, and manipulation of audio from JavaScript code lets you create awesome sound effects as well as play and manipulate music in real time.
WebGL
Lets you create high-performance, hardware-accelerated 3D (and 2D) graphics from Web content. This is a Web-supported implementation of OpenGL ES 2.0.
WebRTC
The WebRTC (Real-Time Communications) API gives you the power to control audio and video data, including teleconferencing and transmitting other application data back and forth between two users. Want your players to be able to talk to each other while blowing up monsters? This is the API for you.
WebSockets
The WebSocket API lets you connect your app or site to a server to transmit data back and forth in real-time. Perfect for multiplayer gaming action, chat services, and so forth.
Web Workers
Workers give you the ability to spawn background threads running their own JavaScript code, to take advantage of modern, multi-core processors.
XMLHttpRequest and File API
The combination of XMLHttpRequest and the File API let you send and receive any kind of data you want (don't let the "XML" throw you!) from a Web server. This is a great way to do anything from downloading new game levels and artwork to transmitting non-real-time game status information back and forth.

 

Etiquetas y colaboradores del documento

Etiquetas: 
 Colaboradores en esta página: Albizures, atlas7jean
 Última actualización por: Albizures,