Archive for September, 2008

HBB updated to v0.2.3a

Monday, September 29th, 2008

30 September 2008 (v0.2.3a)

  • Wlan adapter should now work with the HBB
  • Applications should now be detected properly
  • When applications are downloaded/deleted from the popular category they will now appear correctly in other categories and vice versa

As lots of users were having problems, the HBB has been updated to v0.2.3a which should now fix the issues. If there are still outstanding issues, please let me know.

Download HBB v0.2.3 or run HBB on your Wii to update

Tutorial 7: Using arrays

Sunday, September 28th, 2008

In this Wii programming tutorial we will quickly cover how we can utilise arrays for holding information about games like in card games or other games were the positions of objects remains static. You can grab the PDF of this tutorial here: codemii-tutorial-7

An array as you should know can hold multiple elements. By utilising these elements we can arrange them however we like. For example, if we were to do a tic tac toe game, we know there are 9 cells in 3 x 3. We can declare an array with 8 elements and set all those elements to 0 as shown below.
(more…)

HBB updated to v0.2.3

Sunday, September 28th, 2008

29 September 2008 (v0.2.3)

  • Rebuilt with latest libfat CVS to fix delete corruption bug (thanks joedj)
  • Added Popular category
  • Updated HBB about information

A quick update for the Homebrew Browser, one to fix the delete corruption bug and to add a Popular category which lists the applications by popularity. I haven’t gotten around to adding the update all button or the installed applications button, but they will be there on the next update.

Download HBB v0.2.3 or run HBB on your Wii to update

HBB Updated Applications

Friday, September 26th, 2008

The following applications have been added/updated:

  • GeckoOS updated to v1.07b
  • Snes9xGX v005
  • Wiibreaker v0.1
  • WiiDoom updated to v0.3

HBB Updated Applications

Sunday, September 21st, 2008

The following applications have been added/updated:

  • FCEU (tantric) updated to v2.0.2
  • ftpii updated to v0.0.14
  • GeckoOS updated to v1.07a
  • Gnuboy GX updated to v2008.09.17
  • Gravity updated to v1.1
  • Map Maker v1.0
  • Pacman (emulator) v1.0
  • Visual Boy Advance updated to v1.0.1

HBB Updated Applications

Monday, September 15th, 2008

The following applications have been added/updated:

  • Wii Breakout v0.01
  • GeckoOS updated to v1.06f
  • FCEU (tantric) updated to v2.0.1
  • Gravity v1.0
  • WiiDoom updated to v0.2
  • WiiEngine v1.4

Tutorial 6: Button detection

Sunday, September 14th, 2008

In this Wii programming tutorial we will cover displaying an image as the mouse cursor and how to detect button clicking. You can grab the PDF of this tutorial here: codemii-tutorial-6.

Firstly download this tutorial6-image which will contain the required files to get us started. This zip file also contains the JPEG code required to display images which you should have learnt about in the last tutorial. Extract this zip file in C:\devkitPro\examples\gamecube and open up tutorial6.pnproj.

As you should recall, we displayed a cursor which we could control on the gamecube by using the following code:
(more…)

HBB Updated Applications

Sunday, September 7th, 2008

The following applications have been added/updated:

  • BuscaWiinas v0.1
  • Hugo-wii updated to v2008.08.27
  • Jumpnbump v0.2
  • SpaceShooter updated to v0.3

Tutorial 5: JPEG images

Sunday, September 7th, 2008

This fifth Wii programming tutorial will cover how to display JPEG images. As usual, I’m assuming you’ve read all the other tutorials. You can grab the PDF of this tutorial here: codemii-tutorial-5

Firstly download this tutorial5-blank which will contain the required files to get us started. Extract this zip file in C:\devkitPro\examples\gamecube. Open up tutorial5.pnproj and then click on main.c to show the source code.

Included in the download are two files, one called picture.s and a JPEG picture. The picture.s file defines all our variables for the picture and the link to the picture itself. If you open the image file “about.jpg” you’ll see the image with a black background. It’s important to remember that JPEGs aren’t transparent like PNGs are.
(more…)

HBB updated to v0.2.2

Saturday, September 6th, 2008

6 September 2008 (v0.2.2)

  • Now downloads images in real time, no more having to wait for HBB to load all the images
  • Fixed IR cursor, no more IR cursor correction is required (thanks Wil)
  • Deleting applications now deletes all files from the directories created (emulator roms/saves directories aren’t deleted)
  • Dpad left and right now controls the categories
  • Updated HBB about image to include information about wii message notifications for HBB

Download HBB v0.2.2 or run HBB on your Wii to update

This update should make loading the Homebrew Browser a better experience as you’ll no longer have to wait for it to download all the images when first run. The IR cursor being fixed should also make things a bit better as well.

The fix for the IR cursor was quite simple. I was using ir.sx and sy before as I thought that it would have been better as these co-ordinates are smoothed but it turns out that using ir.x and y work just as well and I believe have fixed the IR cursor correction problem.