Wii Opera SDK

Wii Opera SDK

Infobox_Company
company_name = Wii Opera SDK
company_
company_type = Private
company_slogan = "Make Games for the Internet Channel"
foundation = 2007
industry = Video Games (Open Source)
key_people =Daniel Gump: Founder & Programmer

homepage = [http://wiioperasdk.com wiioperasdk.com]

The Wii Opera SDK is a collection of optimized Javascript files created to aid in the development of games and software for the Internet Channel, the Nintendo Wii's Opera-based Web browser. The original intent of the SDK was to aid in the development of HullBreach Online, a browser-based space MMO RPG. [ [http://www.4colorrebellion.com/archives/2007/11/17/4cr-interview-daniel-gump-of-hullbreach-online/ 4CR - Interview of Daniel Gump of HullBreach Online] ] The components of the SDK provide assistance in several areas for creating homebrew Web applications using Wii Remotes, matrix math, graphical primitives, texture-mapping, raycasting, and multiuser communication.

Efforts have been made by the Wii Opera SDK to promote both products it supports, the Nintendo Wii and the Opera Internet browser; thus, no objects have been made by either companies to its naming. In fact, the 3D Mesh Demo widget, which showcased the SDK, won runner-up in the You Got Skills contest hosted by Opera. [ [http://my.opera.com/widgets/blog/2008/03/10/you-got-skills You Got Skills widget contest winners] ]

History

Development of the Wii Opera SDK began in June 2007, soon after it became obvious that more could be done with the Internet Channel than the demonstrations shown by Sky Diver and Chatroom. Early demonstrations to become available included HullBreach Online and a Star Fox clone. In December 2007 came the public release, as announced on GoNintendo [ [http://gonintendo.com/?p=31868 GoNintendo - Wii Opera SDK Now Open to the Public] ] , Engadget [ [http://www.engadget.com/2007/12/21/unofficial-wii-opera-sdk-let-loose/ Engadget - Unofficial Wii Opera SDK Set Loose] ] , Joystiq [ [http://www.joystiq.com/2007/12/21/unofficial-wii-opera-sdk-now-available/ Joystiq - Unofficial Wii Opera SDK Now Available] ] , and other video game resource websites.

Releases

June 14, 2007
* Support for 1 Wii Remote
* Flat-shaded triangles

June 26, 2007
* Support for 4 Wii Remotes and Nunchuks

August 3, 2007
* Wall and floor perspective texture-mapping

December 19, 2007
* Public release

January 27, 2008 [ [http://wii.qj.net/Wii-Opera-SDK-version-2-0-3D-Mesh-Gallery-released/pg/49/aid/112485 QJ - Wii Opera SDK v2.0 3D Mesh Gallery released] ]
* v2.0 release
* 3D Mesh Gallery and mesh generator

April 8, 2008
* Realtime shadows

April 28, 2008
* Triangle texture-mapping

June 18, 2008
* Raycasting engine [ [http://wii.qj.net/Wii-Opera-SDK-FPS-Engine-Beta-raycasting-dungeon-class-demo-available-now/pg/49/aid/121379 QJ - FPS Engine Beta available now] ]

August 16, 2008
* v3.0 release

Upcoming Releases

* Dungeon/level editor for the raycasting class that posts the creations to a gallery [ [http://blog.wiioperasdk.com/2008/07/15/new-dungeon-editor-in-the-works-for-wii-opera-sdk-raycaster Wii Opera SDK Blog - New Dungeon Editor in the works] ]
* Texture gallery for use in raycasting creations
* Faster texture-mapping based on the Opera 9.5+ builds of the Internet Channel.

pecific Functionality

Wii Remote Interaction (v2.x)

All buttons on all four Wii Remotes can be detected except for Power and Home. In addition, the 1 button on the primary Wii Remote cannot be detected due to system uses. The C and Z buttons on all Nunchuk attachments except for that of the primary Wii Remote are detectable as well. In addition, the SDK detects and calculates cursor position, distance from the Sensor Bar in meters, and angle of roll, from all four Wii Remotes. It also automatically determines if the Wii Remote is being used as a pointer or a two-handed controller.

3D Math (v2.x)

There is one three-dimensional math class in the second release version of the "Wii Opera SDK". This class takes a much different approach to setting up 3D graphics than the class it replaces. Instead of just accepting an array of triangles to be manipulated and drawn, individual mesh objects can be manipulated then merged into one giant scene for final drawing. These mesh objects no longer have to be hard-coded; they can now be imported from an existing library or custom files. Generally, each mesh manipulation requires the passing of few or no variables because environmental values are set in the beginning and changed as needed. In addition to the previous abilities to move, scale, and rotate, objects, more advanced effects have joined the foray: real-time lighting, explosions, and shadows. Hidden surface removal, z-sorting, and auto-clipping, remain in this release as well.

This release also brought with it the Mesh Gallery and its entire infrastructure to allow gamers to import 3D objects into Internet Channel games.

Raycasting (v1.x)

This class supersedes the old 3DFPS class, which used axis-aligned texture-mapping to generate scenes. The current release uses raycasting of axis-aligned verticale grid regions. It also supports various second-pass lighting effects and graphical hyperlinking.

Drawing (v2.x)

All geometric shapes are drawn to an active canvas object. Shapes include lines, circles, rectangles, trapezoids, clip regions, and scenes. All shapes with a perimeter can be filled an RGB(A) color. Images from JPEG, GIF, PNG, and SVG, files or IMG objects can be placed onto a canvas with rotation and scaling. Any transparencies and alpha channels from the image files will be preserved. Both trapezoid and scene objects can be texture-mapped.

Trapezoids require rectangular textures to map with perspective-correction to either a vertical or a horizontal object. Scene objects consist of affine-mapped triangles with optional second-pass shading by transforming the canvas drawing matrix. The drawing class natively supports both flat-shading and texture-mapping and will determine which to use based on data in the object mesh. [ [http://blog.wiioperasdk.com/2008/07/18/wii-opera-sdk-new-mesh-format Wii Opera SDK Blog - New mesh format] ]

Multiuser Communication (v1.x)

Each game developed to use the multiplayer functionality gets assigned a unique ID that allows it to pass data through the server between clients. Potentially unlimited variables can be passed as a query string, adding to great versatility.

Criticisms

The Internet Channel has been plagued by slow execution of both JavaScript and Adobe Flash code, causing homebrew projects in these formats to suffer from slowdowns and lag when compared to their desktop counterparts. Thus, features must either be dropped, or code must be optimized into obfuscation in some cases.

Benchmarks have placed flat-shading to about 3000-5000 triangles/sec and textured-shading to about 200-300 triangles/sec, depending on conditions. For full-screen raycasting (800 pixel width), the scanlines need to be around 12 pixels wide or wider for playable framerates. These speed factors disallow complex artwork in games and, perhaps, limit games to the visual quality of 3D projects from the SuperNES (5th generation) console era.

In addition, JavaScript sound extensions are not supported by the Internet Channel, so developers wishing to add sound to their projects must add and invisible Flash module or do without sound at all, with the former slowing down projects even further.

ee also

* Wii homebrew

References

"This article uses text taken from [http://wiki.hullbreachonline.com/index.php?title=Wii_Opera_SDK&redirect=no HullBreach] under the GFD:"

External links

* [http://wiioperasdk.com Wii Opera SDK Official Page]


Wikimedia Foundation. 2010.

Игры ⚽ Поможем сделать НИР

Look at other dictionaries:

  • Wii homebrew — refers to the reuse of Nintendo s Wii game console to run software that has not been authorized by Nintendo. It achieves this by defeating the Wii s copy protection and code signing measures. In more general terms, Wii Homebrew refers to the use… …   Wikipedia

  • Opera — Opera 11.50 unter Windows 7 …   Deutsch Wikipedia

  • Opera Mini — Développeur Opera Software Dernière version 5.1 …   Wikipédia en Français

  • Opera mini — Opera Mini …   Wikipédia en Français

  • Opera Unite — Разработчик Opera Software …   Википедия

  • Opera — Иное название этого понятия  «Опера»; см. также другие значения. Opera …   Википедия

  • Opera (Browser) — Dieser Artikel oder Abschnitt ist nicht hinreichend mit Belegen (Literatur, Webseiten oder Einzelnachweisen) versehen. Die fraglichen Angaben werden daher möglicherweise demnächst gelöscht. Hilf Wikipedia, indem du die Angaben recherchierst und… …   Deutsch Wikipedia

  • Opera Browser — Dieser Artikel oder Abschnitt ist nicht hinreichend mit Belegen (Literatur, Webseiten oder Einzelnachweisen) versehen. Die fraglichen Angaben werden daher möglicherweise demnächst gelöscht. Hilf Wikipedia, indem du die Angaben recherchierst und… …   Deutsch Wikipedia

  • Opera Mini — Dieser Artikel oder Abschnitt ist nicht hinreichend mit Belegen (Literatur, Webseiten oder Einzelnachweisen) versehen. Die fraglichen Angaben werden daher möglicherweise demnächst gelöscht. Hilf Wikipedia, indem du die Angaben recherchierst und… …   Deutsch Wikipedia

  • Opera Mobile — Dieser Artikel oder Abschnitt ist nicht hinreichend mit Belegen (Literatur, Webseiten oder Einzelnachweisen) versehen. Die fraglichen Angaben werden daher möglicherweise demnächst gelöscht. Hilf Wikipedia, indem du die Angaben recherchierst und… …   Deutsch Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”