Line 24:
Line 24:
If you havenβt read the foreword, read it and donβt be lazy. This will be a fairly short lesson and at this point I will assume you have downloaded the Libwiisprite. First, you need to know how to set your make file. The basic template will look something like this:
If you havenβt read the foreword, read it and donβt be lazy. This will be a fairly short lesson and at this point I will assume you have downloaded the Libwiisprite. First, you need to know how to set your make file. The basic template will look something like this:
+
<!-- Use source lang="text" to avoid munging Makefiles with spaces for Wiki -->
+
<source lang="text">
+
#---------------------------------------------------------------------------------
+
# Clear the implicit built in rules
+
#---------------------------------------------------------------------------------
+
.SUFFIXES:
+
#---------------------------------------------------------------------------------
+
ifeq ($(strip $(DEVKITPPC)),)
+
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
+
endif
β
#---------------------------------------------------------------------------------
+
include $(DEVKITPPC)/wii_rules
β
# Clear the implicit built in rules
+
β
#---------------------------------------------------------------------------------
+
#---------------------------------------------------------------------------------
β
.SUFFIXES:
+
# TARGET is the name of the output
β
#---------------------------------------------------------------------------------
+
# BUILD is the directory where object files & intermediate files will be placed
β
ifeq ($(strip $(DEVKITPPC)),)
+
# SOURCES is a list of directories containing source code
β
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
+
# INCLUDES is a list of directories containing extra header files
β
endif
+
#---------------------------------------------------------------------------------
β
+
TARGET := $(notdir $(CURDIR))
β
include $(DEVKITPPC)/wii_rules
+
BUILD := build
β
+
SOURCES := source
β
#---------------------------------------------------------------------------------
+
DATA := data
β
# TARGET is the name of the output
+
INCLUDES :=
β
# BUILD is the directory where object files & intermediate files will be placed
+
β
# SOURCES is a list of directories containing source code
+
#---------------------------------------------------------------------------------
β
# INCLUDES is a list of directories containing extra header files
+
# options for code generation
β
#---------------------------------------------------------------------------------
+
#---------------------------------------------------------------------------------
β
TARGET := $(notdir $(CURDIR))
+
β
BUILD := build
+
CFLAGS = -g -O2 -mrvl -Wall $(MACHDEP) $(INCLUDE) -I$(DEVKITPPC)/local/include
β
SOURCES := source
+
CXXFLAGS = $(CFLAGS)
β
DATA := data
+
LDFLAGS = -g $(MACHDEP) -mrvl -Wl,-Map,$(notdir $@).map
β
INCLUDES :=
+
β
+
#---------------------------------------------------------------------------------
β
#---------------------------------------------------------------------------------
+
# any extra libraries we wish to link with the project
β
# options for code generation
+
#---------------------------------------------------------------------------------
β
#---------------------------------------------------------------------------------
+
LIBS := -lwiisprite -lpng -lz -lwiiuse -lbte -lfat -logc -lm
β
+
β
CFLAGS = -g -O2 -mrvl -Wall $(MACHDEP) $(INCLUDE) -I$(DEVKITPPC)/local/include
+
#---------------------------------------------------------------------------------
β
CXXFLAGS = $(CFLAGS)
+
# list of directories containing libraries, this must be the top level containing
β
LDFLAGS = -g $(MACHDEP) -mrvl -Wl,-Map,$(notdir $@).map
+
# include and lib
β
+
#---------------------------------------------------------------------------------
β
#---------------------------------------------------------------------------------
+
LIBDIRS :=
β
# any extra libraries we wish to link with the project
+
β
#---------------------------------------------------------------------------------
+
#---------------------------------------------------------------------------------
β
LIBS := -lwiisprite -lpng -lz -lwiiuse -lbte -lfat -logc -lm
+
# no real need to edit anything past this point unless you need to add additional
β
+
# rules for different file extensions
β
#---------------------------------------------------------------------------------
+
#---------------------------------------------------------------------------------
β
# list of directories containing libraries, this must be the top level containing
+
ifneq ($(BUILD),$(notdir $(CURDIR)))
β
# include and lib
+
#---------------------------------------------------------------------------------
β
#---------------------------------------------------------------------------------
+
β
LIBDIRS :=
+
export OUTPUT := $(CURDIR)/$(TARGET)
β
+
β
#---------------------------------------------------------------------------------
+
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
β
# no real need to edit anything past this point unless you need to add additional
+
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
β
# rules for different file extensions
+
β
#---------------------------------------------------------------------------------
+
export DEPSDIR := $(CURDIR)/$(BUILD)
β
ifneq ($(BUILD),$(notdir $(CURDIR)))
+
β
#---------------------------------------------------------------------------------
+
#---------------------------------------------------------------------------------
β
+
# automatically build a list of object files for our project
β
export OUTPUT := $(CURDIR)/$(TARGET)
+
#---------------------------------------------------------------------------------
β
+
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
β
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
+
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
β
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
+
sFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
β
+
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.S)))
β
export DEPSDIR := $(CURDIR)/$(BUILD)
+
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
β
+
β
#---------------------------------------------------------------------------------
+
#---------------------------------------------------------------------------------
β
# automatically build a list of object files for our project
+
# use CXX for linking C++ projects, CC for standard C
β
#---------------------------------------------------------------------------------
+
#---------------------------------------------------------------------------------
β
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
+
ifeq ($(strip $(CPPFILES)),)
β
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
+
export LD := $(CC)
β
sFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
+
else
β
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.S)))
+
export LD := $(CXX)
β
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
+
endif
β
+
β
#---------------------------------------------------------------------------------
+
export OFILES := $(addsuffix .o,$(BINFILES)) \
β
# use CXX for linking C++ projects, CC for standard C
+
$(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
β
#---------------------------------------------------------------------------------
+
$(sFILES:.s=.o) $(SFILES:.S=.o)
β
ifeq ($(strip $(CPPFILES)),)
+
β
export LD := $(CC)
+
#---------------------------------------------------------------------------------
β
else
+
# build a list of include paths
β
export LD := $(CXX)
+
#---------------------------------------------------------------------------------
β
endif
+
export INCLUDE := $(foreach dir,$(INCLUDES), -iquote $(CURDIR)/$(dir)) \
β
+
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
β
export OFILES := $(addsuffix .o,$(BINFILES)) \
+
-I$(CURDIR)/$(BUILD) \
β
$(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
+
-I$(LIBOGC_INC)
β
$(sFILES:.s=.o) $(SFILES:.S=.o)
+
β
+
#---------------------------------------------------------------------------------
β
#---------------------------------------------------------------------------------
+
# build a list of library paths
β
# build a list of include paths
+
#---------------------------------------------------------------------------------
β
#---------------------------------------------------------------------------------
+
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
β
export INCLUDE := $(foreach dir,$(INCLUDES), -iquote $(CURDIR)/$(dir)) \
+
-L$(LIBOGC_LIB) -L$(DEVKITPPC)/local/lib
β
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
+
β
-I$(CURDIR)/$(BUILD) \
+
export OUTPUT := $(CURDIR)/$(TARGET)
β
-I$(LIBOGC_INC)
+
.PHONY: $(BUILD) clean
β
+
β
#---------------------------------------------------------------------------------
+
#---------------------------------------------------------------------------------
β
# build a list of library paths
+
$(BUILD):
β
#---------------------------------------------------------------------------------
+
@[ -d $@ ] || mkdir -p $@
β
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
+
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
β
-L$(LIBOGC_LIB) -L$(DEVKITPPC)/local/lib
+
β
+
#---------------------------------------------------------------------------------
β
export OUTPUT := $(CURDIR)/$(TARGET)
+
clean:
β
.PHONY: $(BUILD) clean
+
@echo clean ...
β
+
@rm -fr $(BUILD) $(OUTPUT).elf $(OUTPUT).dol
β
#---------------------------------------------------------------------------------
+
β
$(BUILD):
+
#---------------------------------------------------------------------------------
β
@[ -d $@ ] || mkdir -p $@
+
run:
β
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
+
psoload $(TARGET).dol
β
+
β
#---------------------------------------------------------------------------------
+
#---------------------------------------------------------------------------------
β
clean:
+
reload:
β
@echo clean ...
+
psoload -r $(TARGET).dol
β
@rm -fr $(BUILD) $(OUTPUT).elf $(OUTPUT).dol
+
β
+
β
#---------------------------------------------------------------------------------
+
#---------------------------------------------------------------------------------
β
run:
+
else
β
psoload $(TARGET).dol
+
β
+
DEPENDS := $(OFILES:.o=.d)
β
#---------------------------------------------------------------------------------
+
β
reload:
+
#---------------------------------------------------------------------------------
β
psoload -r $(TARGET).dol
+
# main targets
β
+
#---------------------------------------------------------------------------------
β
+
$(OUTPUT).dol: $(OUTPUT).elf
β
#---------------------------------------------------------------------------------
+
$(OUTPUT).elf: $(OFILES)
β
else
+
β
+
#---------------------------------------------------------------------------------
β
DEPENDS := $(OFILES:.o=.d)
+
# This rule links in binary data with the .jpg extension
β
+
#---------------------------------------------------------------------------------
β
#---------------------------------------------------------------------------------
+
%.jpg.o : %.jpg
β
# main targets
+
#---------------------------------------------------------------------------------
β
#---------------------------------------------------------------------------------
+
@echo $(notdir $<)
β
$(OUTPUT).dol: $(OUTPUT).elf
+
$(bin2o)
β
$(OUTPUT).elf: $(OFILES)
+
β
+
-include $(DEPENDS)
β
#---------------------------------------------------------------------------------
+
β
# This rule links in binary data with the .jpg extension
+
#---------------------------------------------------------------------------------
β
#---------------------------------------------------------------------------------
+
endif
β
%.jpg.o : %.jpg
+
#---------------------------------------------------------------------------------
β
#---------------------------------------------------------------------------------
+
</source>
β
@echo $(notdir $<)
β
$(bin2o)
β
β
-include $(DEPENDS)
β
β
#---------------------------------------------------------------------------------
β
endif
β
#---------------------------------------------------------------------------------
(taken from the Libwiisprite template make file)
(taken from the Libwiisprite template make file)
Line 169:
Line 171:
In order to βinstallβ Libwiisprite, follow these steps
In order to βinstallβ Libwiisprite, follow these steps
β
1. Open the folder βlibwiisprite/libwiispriteβ then open the βincludeβ folder. Next, copy the entire contents of the folder, there should be 8 files with the .h extension.
+
# Open the folder βlibwiisprite/libwiispriteβ then open the βincludeβ folder. Next, copy the entire contents of the folder, there should be 8 files with the .h extension.
β
+
# Next, open devkitPro/libogc/include ( \ slashes for windows) and paste the includes there.
β
2. Next, open devkitPro/libogc/include ( \ slashes for windows) and paste the includes there.
+
# Go back to libwiisprite and open the libwiisprite folder in libwiisprite. Then open lib and copy the one .a file there and paste it in devkitPro/libogc/lib/wii.
β
+
# Again, go back to the root of libwiisprite and open libpng, copy the contents to the same place as the other .h files and then open.
β
3. Go back to libwiisprite and open the libwiisprite folder in libwiisprite. Then open lib and copy the one .a file there and paste it in devkitPro/libogc/lib/wii.
+
# Open libwiisprite/libpng/lib and copy libpng.a and paste it in devkitPro/libogc/wii.
β
β
4. Again, go back to the root of libwiisprite and open libpng, copy the contents to the same place as the other .h files and then open.
β
β
5. Open libwiisprite/libpng/lib and copy libpng.a and paste it in devkitPro/libogc/wii.
Now you are set up to start programming.
Now you are set up to start programming.
Line 257:
Line 255:
There are a few other functions in the GameVideo class that may be of use. The first I will mention is StopVideo(), the documentation defines it like this:
There are a few other functions in the GameVideo class that may be of use. The first I will mention is StopVideo(), the documentation defines it like this:
β
void StopVideo () Shuts the video subsystem down. It won't work if Video wasn't initialized before.
+
void StopVideo () Shuts the video subsystem down. It won't work if Video
+
wasn't initialized before.
Again, not much info, but it doesnβt require much information to understand, this shuts down the Video systems on the Wii, itβs kind of the opposite of InitWii(), this leads me on to my second function, IsInitialized() defined in the documentation as such:
Again, not much info, but it doesnβt require much information to understand, this shuts down the Video systems on the Wii, itβs kind of the opposite of InitWii(), this leads me on to my second function, IsInitialized() defined in the documentation as such:
Line 274:
Line 273:
</source>
</source>
β
Thereβs another two functions that you may want to use, and they are GetWidth() and GetHeight. They get the width and height of the current screen. A possible application of this is to make sure your character doesnβt go beyond the edge of the screen, or where to draw your background or where to print your menu so that its centred.
+
Thereβs another two functions that you may want to use, and they are GetWidth() and GetHeight. They get the width and height of the current screen. A possible application of this is to make sure your character doesnβt go beyond the edge of the screen, or where to draw your background or where to print your menu so that its centred.
Thatβs it for this lesson, I would advise you play around with the numbers in the SetBackground() function if you still donβt see how they work, playing with numbers can teach you an awful lot. Also, try and replace the wiisprite.h with the only header(s) that are required for this program.
Thatβs it for this lesson, I would advise you play around with the numbers in the SetBackground() function if you still donβt see how they work, playing with numbers can teach you an awful lot. Also, try and replace the wiisprite.h with the only header(s) that are required for this program.
Line 359:
Line 358:
Parameters:
Parameters:
image The image for this sprite.
image The image for this sprite.
β
frameWidth The width of the frame. Should be a multiple of image->GetWidth() or 0 if it should get the same width as the image.
+
frameWidth The width of the frame. Should be a multiple of image->GetWidth()
β
frameHeight The height of the frame. Should be a multiple of image->GetHeight() or 0 if it should get the same height as the image.
+
or 0 if it should get the same width as the image.
+
frameHeight The height of the frame. Should be a multiple of image->GetHeight()
+
or 0 if it should get the same height as the image.
Line 425:
Line 426:
Sets the zooming of the sprite. It resets any defined stretch values.
Sets the zooming of the sprite. It resets any defined stretch values.
Parameters:
Parameters:
β
zoom The new zoom of the sprite. 1 is normal size, cannot be smaller than 0.
+
zoom The new zoom of the sprite. 1 is normal size, cannot be smaller
+
than 0.
CURRENT ZOOM CANNOT BE SMALLER THAN 0! Make sure you go by this rule, to make sure that your images zoom level never goes below 0 you may add a simple check like this:
CURRENT ZOOM CANNOT BE SMALLER THAN 0! Make sure you go by this rule, to make sure that your images zoom level never goes below 0 you may add a simple check like this:
Line 437:
Line 439:
f32 wsp::Sprite::GetZoom ( ) const
f32 wsp::Sprite::GetZoom ( ) const
β
Gets the zooming of the sprite. If StretchWidth is not the same as StretchHeight, it returns 0.
+
Gets the zooming of the sprite. If StretchWidth is not the same as
+
StretchHeight, it returns 0.
Returns: The current zoom of the sprite. 1 is normal size.
Returns: The current zoom of the sprite. 1 is normal size.
Line 476:
Line 479:
Sets the transparency of the sprite.
Sets the transparency of the sprite.
β
Parameters: alpha Sets the transparency. Has a range from 0x00 (invisible) to 0xFF (fully visible)
+
Parameters: alpha Sets the transparency. Has a range from 0x00 (invisible)
+
to 0xFF (fully visible)
The values 0x00 and 0xFF are hexadecimal or more commonly called βhexβ, this is how most of your image will be handled although the functions are just as happy to work with decimal as shown in the code segment at the start of the Transparency section. In our example, 0x00 is the same as 0 (no alpha, and 0xFF is 255 (fully opaque). Now letβs look again at that code segment
The values 0x00 and 0xFF are hexadecimal or more commonly called βhexβ, this is how most of your image will be handled although the functions are just as happy to work with decimal as shown in the code segment at the start of the Transparency section. In our example, 0x00 is the same as 0 (no alpha, and 0xFF is 255 (fully opaque). Now letβs look again at that code segment
Line 497:
Line 501:
Returns:
Returns:
β
The current transparency of the sprite. Has a range from 0x00 (invisible) to 0xFF (fully visible)
+
The current transparency of the sprite. Has a range from 0x00 (invisible) to
+
0xFF (fully visible)
So now we know what GetTransparency() does (if you didnβt know before), then it will compare that value to 0xFF β 4 (think of it as being 255 β 4 = 251). To put this into an equation, we will assume that the native alpha value of the image is 255, or 0xFF:
So now we know what GetTransparency() does (if you didnβt know before), then it will compare that value to 0xFF β 4 (think of it as being 255 β 4 = 251). To put this into an equation, we will assume that the native alpha value of the image is 255, or 0xFF:
Line 524:
Line 529:
Sets the height stretch of the sprite.
Sets the height stretch of the sprite.
Parameters:
Parameters:
β
stretchHeight Stretches the height of the sprite by this value. 1 is normal size, cannot be smaller than 0.
+
stretchHeight Stretches the height of the sprite by this value. 1 is
+
normal size, cannot be smaller than 0.
Line 590:
Line 596:
Sets the rotation angle of the sprite.
Sets the rotation angle of the sprite.
Parameters:
Parameters:
β
rotation The new angle of the sprite. It is measured in degrees/2, so if 90 degrees is wanted, 45 degrees should be the passed parameter.
+
rotation The new angle of the sprite. It is measured in degrees/2,
+
so if 90 degrees is wanted, 45 degrees should be the passed
+
parameter.
In the program the following line of code is called.
In the program the following line of code is called.