Shoot Out: Linux source demo released


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Shoot Out: Linux source demo released
# 1  
Old 11-18-2008
Shoot Out: Linux source demo released

Shoot out is a arcade shooter similar to galaga or space invaders using SDL.
ImageImage

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Flash And Fade DEMO For Mac OSX 10.7.5, (And Linux?).

This is an AT A GLANCE shell DEMO that does:- 1) 10 centred greyscale fades without warning beeps. 2) 5 centred yellow "WARNING!" flashes with beeps every ON state. 3) 5 FULL widowed red "DANGER!!!" flashes with beeps in the ON and OFF states. It assumes that the warning bell is enabled... (0 Replies)
Discussion started by: wisecracker
0 Replies

2. AIX

cpu used more than 80% how will u trouble shoot?

cpu used more than 80% how will u trouble shoot? (1 Reply)
Discussion started by: ramraj731
1 Replies
Login or Register to Ask a Question
pods::SDL::CDTrack(3pm) 				User Contributed Perl Documentation				   pods::SDL::CDTrack(3pm)

NAME
SDL::CDTrack -- SDL Bindings for structure SDL_CDTrack CATEGORY
Core, CDROM, Structure SYNOPSIS
use SDL; use SDL::CDROM; use SDL::CD ':status'; use SDL::CDTrack; SDL::init( SDL_INIT_CDROM ); my $drives = SDL::CDROM::num_drives(); if( $drives > 0 ) { my $CD = SDL::CD->new(0); #first drive's CD if($CD) { if( $CD->status != CD_TRAYEMPTY ) { my $track = SDL::CD->track(0); } } } CONSTANTS
The constants are exported by default. You can avoid this by doing: use SDL::CDTrack (); and access them directly: SDL::CDTrack::SDL_AUDIO_TRACK; or by choosing the export tags below: Export tag: ':type' SDL_AUDIO_TRACK SDL_DATA_TRACK METHOD
id $track->id() # 0-99 Track number type $track->type() # SDL_AUDIO_TRACK or SDL_DATA_TRACK Type of track length $track->length() Length, in frames, of this track offset $track->offset() Frame offset to the beginning of this track SEE ALSO
SDL::CDROM, SDL::CD AUTHORS
See "AUTHORS" in SDL. perl v5.14.2 2012-05-28 pods::SDL::CDTrack(3pm)