OS4 DepotLogo by McFly 
(anonymous IP: 3.133.147.252,2193) 
 HomeRecentStatsSearchSubmitUploadsMirrorsContactInfoDisclaimerConfigAdmin
 Menu

 Features
   Crashlogs
   Bug tracker
   Locale browser
 

 Categories

   o Audio (343)
   o Datatype (51)
   o Demo (203)
   o Development (596)
   o Document (22)
   o Driver (97)
   o Emulation (147)
   o Game (1004)
   o Graphics (497)
   o Library (115)
   o Network (232)
   o Office (66)
   o Utility (923)
   o Video (69)

Total files: 4365

Full index file
Recent index file

 Links

  Amigans.net
  OpenAmiga
  Aminet
  IntuitionBase


Support the site


 Readme for:  Development » Game » gameblademsx.lha

Gameblademsx

Description: A music example for Gameblade
Download: gameblademsx.lha       (TIPS: Use the right click menu if your browser takes you back here all the time)
Size: 1Mb
Version: 20021007
Date: 07 Jul 2008
Author: Jarek Ilski, AmigaOS 4.0 compile by Spot / Up Rough
Submitter: Spot / Up Rough
Email: spot/triad se
Homepage: http://gameblade.sourceforge.net/main.html
Category: development/game
License: GPL
Distribute: yes
Min OS Version: 4.0
FileID: 3847
 
Comments: 0
Snapshots: 0
Videos: 0
Downloads: 154  (Current version)
154  (Accumulated)
Votes: 0 (0/0)  (30 days/7 days)

Show comments Show snapshots Show videos Show content Show crashlogs Replace file 
***********************************************************************
*                                                                     *
*  GameBlade by Jarek Ilski ( Nokturn32()poczta.onet.pl )              *
*  Distribution: EXMusic20021007                                      *
*                                                                     *
*  GameBlade Version: 20021007                                        *
*                                                                     *
***********************************************************************

About GameBlade:
----------------
Please read the file README-GB for information about the GameBlade.

License:
--------
Please read the file COPYING for the license. The license is the GPL.

Last update:
------------
09 Oct 2002 ( Version Nr. 20021007 )

About this distribution:
------------------------
This distribution is called GameBlade-EXMusic20021007. It demonstrates the
looped
playback of a background music in Ogg Vorbis format (the actual code is only 1
line long!).
The changes compared to the distribution GmaeBlade-Base20021007 are:

-"makefile", changed the binary name to "EXMusic"
-"headers/GB_Definitions.h", changed GAMEBUILD and the video mode settings to
  800x600 and windowed mode
-"main.cpp", added some lines of code to setup the audio device, load and loop
the
  music file "music/Cool.ogg" and finally to stop music output and close the
  mixer at exit.
-"gfx/8x8font.bmp", removed the file from this distribution because we don't
need
  text display.
-"music/Cool.ogg", added this music file, composed by me ;), it is a complicated
  drum beat. You can use this file, it is covered by the GPL :)

Where to go from here?
----------------------
Read the file README-GB from this directory and the file "HOWTO" in the doc
directory or download example distributions.

Have fun,

 Jarek Ilski, 09. Oct. 2002


***********************************************************************
*                                                                     *
*  GameBlade by Jarek Ilski ( Nokturn32()poczta.onet.pl )              *
*                                                                     *
*  Version: 20021007                                                  *
*                                                                     *
***********************************************************************

License:
--------
Please read the file COPYING for the license. The license is the GPL.

Last update:
------------
07 Oct 2002 ( Version Nr. 20021007 )

What is the GameBlade?
------------------------
The GameBlade is a little helper library made only of headers ( and a .cpp file
) which makes
SDL Game programming even easier than it already is.

For whom is the GameBlade?
----------------------------
The GameBlade is for people who have only a little time but would none the less
like to code a
game and for people who don't like to get into technical stuff. You can easily
code a game with
sound, music, keyboard handling and nice looking bitmap graphics in one day.

For whom is the GameBlade the wrong choice?
---------------------------------------------
Actually, the GameBlade can be useful to anyone, also to people who want to code
3D games or
games with mouse support or people who would like to code professional games. If
you like, you can
use just one part of the library, for example if you are only interested in
music playback, why not use
this part?

What can the GameBlade do?
----------------------------
Actually, the GameBlade can only call other libraries, like SDL, SDL_image and
SDL_mixer. But
if you ask what it was meant to make easier, here you have a list:

- Take care of the video mode ( SDL )
- Load and display sprites in various formats like BMP, JPG, PNG, PCX and many
more ( SDL_image )
- Load and display fullscreen backgrounds ( same formats supported like for
sprites ) ( SDL_image )
- Handle some basic events like the ESC button and closing the window ( SDL )
- Get input from the keyboard and handle it ( SDL )
- Open and play a sound ( formats like Microsoft WAVE, VOC etc etc ) ( SDL_mixer
)
- Open and play background music ( supports formats like OGG, MIDI and MP3 ) (
SDL_mixer )
- Provides a very simple set of functions for displaying text in a 10x16 bmp
font ( font included )

As you see, this is all you need to code a little game. Probably you will
replace the font by an own
one or use another font library, because the set of functions of the GameBlade
is very limited

Concept:
--------
This "library" consists of a main file ( main.cpp ) and many header files. This
library is not
installed to your system but your game or application is built on top of it.
Generally that means:

- You "tar xvfz GameBlade-Base20021007.tar.gz"
- You treat all the new files and directories as if they were part of your
project and you edit 
  them as you like. If you like, you can completely change all the code, or you
can use only parts
  of it.
  
Every header stands for a new section of the library. Some headers will not be
so interesting for you,
while the headers like GB_Definitions.h, GB_Functions.h, GB_Globals.h,
GB_Classes.h and GB_FilterEvents.h
were made to be changed by you.

How do I check if it works?
---------------------------
If you are using Linux, just go to the directory with the file "makefile" and
type "make". If you
get no errors, it works.

What are the requirements for this library?
-------------------------------------------
All you need is a C/C++ compiler, SDL (I used versions 1.2.5 and 1.2.4, but all
new versions should be ok),
SDL_image and SDL_mixer. If you don't have these, here is a tip where you can
get them:

C/C++ compiler: I use GCC, which is freely available for Linux, Windows and many
other systems, you should
                able to find it everywhere
SDL           : www.libsdl.org, there you can find the newest versions
SDL_image     : www.libsdl.org, look for "Libraries"
SDL_mixer     : www.libsdl.org, look for "Libraries"

Well, then what do I do next?
-----------------------------
Now you can start working on your game/application. First I would advise you to
look through the headers and
to look at the main.cpp file, much of the code is commented and easy to
understand. Please also read the files
in the doc directory.

Have fun!

-Jarek Ilski, 07. Oct. 2002




Copyright © 2004-2024 by Björn Hagström All Rights Reserved