In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

Difference between revisions of "Space Shooter"

From WiiBrew
Jump to navigation Jump to search
(Download link is down but source code is archived, someone with some time should compile it.)
 
(8 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Infobox homebrewapp
+
{{Infobox homebrew
 
| title      = Space Shooter
 
| title      = Space Shooter
| image      = [[Image:SpaceShooterIcon.PNG]]
+
| image      = [[File:SpaceShooterIcon.PNG]]
| desc        = Shoot Things in Space!
+
| type        = shooting game
| type        = Game
 
 
| author      = PaceMaker
 
| author      = PaceMaker
| display    =
 
 
| version    = 0.3
 
| version    = 0.3
| download    = [http://pacemaker-productions.googlecode.com/files/SpaceShooter-Wii-Binary-0_3.zip Binary 0.3.zip] [http://pacemaker-productions.googlecode.com/files/SpaceShooter-Wii-Binary-0_3%28rezipped%29.zip Binary-0.3-rezipped.zip]
+
| download    =  
| source      = [http://pacemaker-productions.googlecode.com/files/SpaceShooter-Wii-Source-0_3.zip SpaceShooter-Wii-Source-0_3.zip]
+
| source      = https://web.archive.org/web/20160805222758/http://pacemaker-productions.googlecode.com/files/SpaceShooter-Wii-Source-0_3.zip
 
| peripherals = {{Wiimote1}}
 
| peripherals = {{Wiimote1}}
| hbc        = 1
+
| hbb        = yes
| hbb        = 1
 
 
}}
 
}}
 +
{{No Download}}
  
 
'''Space Shooter''' is an original 2D space shooting game. It's simple, just shoot anything that moves or shoots back. The objective is to destroy all enemies on the six levels.
 
'''Space Shooter''' is an original 2D space shooting game. It's simple, just shoot anything that moves or shoots back. The objective is to destroy all enemies on the six levels.
  
==Controls==
+
== Controls ==
 
Controls can be changed in the Menu.
 
Controls can be changed in the Menu.
  
Line 32: Line 30:
 
|}
 
|}
  
==Easter Eggs==
+
== Easter Eggs ==
 
There is an easter egg if you beat all six levels.
 
There is an easter egg if you beat all six levels.
  
==Source==
+
== Source ==
[http://pacemaker-productions.googlecode.com/files/SpaceShooter-Wii-Source-0_3.zip SpaceShooter-Wii-Source-0_3.zip]
+
Source Code[https://web.archive.org/web/20160805222758/http://pacemaker-productions.googlecode.com/files/SpaceShooter-Wii-Source-0_3.zip]
 +
 
 
To recompile there is a batch file that must be run in the data directory to convert the .bmp to .h files.
 
To recompile there is a batch file that must be run in the data directory to convert the .bmp to .h files.
 
* Notable items
 
* Notable items
Line 43: Line 42:
 
# See BibLib/BibFrameRate.cpp for a way to get the timing required for sprite animation and Frames-Per-Second calculations.
 
# See BibLib/BibFrameRate.cpp for a way to get the timing required for sprite animation and Frames-Per-Second calculations.
  
* See also: [http://code.google.com/p/pacemaker-productions/ PaceMaker Productions (code.google.com)]
+
* See also: [http://code.google.com/p/pacemaker-productions/ PaceMaker Productions (code.google.com)]
  
==Version Notes==
+
== Version Notes ==
 
* Current version is 0.3
 
* Current version is 0.3
===Changes for Version 0.3 release:===
+
* Now compatible with HBC Beta 9, HBC 1.0 and beyond. The binary included is a .dol not a .elf.
 +
=== Changes for Version 0.3 release: ===
 
* Sped up viewport scrolling (no lagging in the viewport, but now it's jittery)
 
* Sped up viewport scrolling (no lagging in the viewport, but now it's jittery)
 
* Change the way weapon systems work (cumulative, not individual)
 
* Change the way weapon systems work (cumulative, not individual)

Latest revision as of 06:46, 21 August 2022

Space Shooter
SpaceShooterIcon.PNG
General
Author(s)PaceMaker
TypeShooting game
Version0.3
Links
Source
Downloadable via the Homebrew Browser
Peripherals
Wiimote1.svg
ARCHIVISTS NEEDED
This homebrew application currently contains an invalid download link. It was either not caught in the web archive or on a forum that required registration to download files; which the Wayback Machine cannot index.

PLEASE PROVIDE A NEW DOWNLOAD IF YOU HAVE THIS APPLICATION.

Space Shooter is an original 2D space shooting game. It's simple, just shoot anything that moves or shoots back. The objective is to destroy all enemies on the six levels.

Controls

Controls can be changed in the Menu.

WiimoteHorizontal.svg Action
Wiimote D-Pad Move
Wiimote 1 Button Turn
Wiimote 2 Button Fire
Wiimote HOME Button In Game Menu

Easter Eggs

There is an easter egg if you beat all six levels.

Source

Source Code[1]

To recompile there is a batch file that must be run in the data directory to convert the .bmp to .h files.

  • Notable items
  1. See BibLib/BibSound2.cpp and BibLib/BibMp3.cpp for a simple background mp3 + sound effects mixer
  2. See BibLib/BibWiiInputDevice.cpp for a nice wrapper on the Wii Remote, Nunchuk, GC Controller functions
  3. See BibLib/BibFrameRate.cpp for a way to get the timing required for sprite animation and Frames-Per-Second calculations.

Version Notes

  • Current version is 0.3
  • Now compatible with HBC Beta 9, HBC 1.0 and beyond. The binary included is a .dol not a .elf.

Changes for Version 0.3 release:

  • Sped up viewport scrolling (no lagging in the viewport, but now it's jittery)
  • Change the way weapon systems work (cumulative, not individual)
  • Initialize random seed for different powerups each time.
  • Restructure internal code to detect and interface with controllers.
  • Added code to allow multiple control options (Pad, Tilt Pad, Nunchuk, Gamecube).
    • Menu is always accessible via Wii Remote Home button.
  • Big Bombs now shoot backwards.
  • Added two levels and made "The Horde" level a bit easier.
  • Improved BibSound code substantially, it's now double buffered
    • Fixed bug where some sounds were accidently repeated
  • Added mp3 background playing to BibSound code.