Changes

326 bytes removed ,  17:33, 26 August 2008
m
reformatting long lines & makefile
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.
316

edits