Qbasicnews.com

Full Version: Space Invaders!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8
No, that is it. Wink
That game was sooo cool to me. I studied it like mad. Tongue
Big Grin Alsome, heh,.. now I don't have to go searching.. Smile

That would deff be cool in 3D,.. :rotfl: ,..
wow, um, i stand no chance, so i will just backout now, i am still learning 2D basics, never mind 3D :o

{EDIT} Arrg :evil: thhis BMP loader is driving me CRAZY, it will only work ONCE or i get a "file already open" message, when i add close file it DOESN'T WOTK!!!!!!! *Goes back to data and converts bmp images into data images* finally, they work: (I need to add colour):

Code:
SCREEN 13

FOR y = 1 TO 8
FOR x = 1 TO 8
READ shipclr
PSET (x, y), shipclr
NEXT
NEXT

DATA 00,15,15,15,15,15,15,00
DATA 15,15,15,15,15,15,15,15
DATA 15,00,15,15,15,15,00,15
DATA 15,15,15,15,15,15,15,15
DATA 15,15,15,00,00,15,15,15
DATA 15,00,15,15,15,15,00,15
DATA 15,00,15,15,15,15,00,15
DATA 15,00,00,00,00,00,00,15

SLEEP
CLS

FOR y = 1 TO 5
FOR x = 1 TO 9
READ ufoclr
PSET (x, y), ufoclr
NEXT: NEXT

DATA 00,00,15,15,15,15,15,00,00
DATA 00,15,15,15,15,15,15,15,00
DATA 00,15,00,15,00,15,00,15,00
DATA 00,15,15,15,15,15,15,15,00
DATA 15,15,15,15,15,15,15,15,15

SLEEP
CLS


FOR y = 1 TO 5
FOR x = 1 TO 9
READ shotclr
PSET (x, y), shotclr
NEXT: NEXT

DATA 00,00,00,00,15,00,00,00,00
DATA 00,00,00,00,15,00,00,00,00
DATA 00,00,15,15,15,15,15,00,00
DATA 00,15,15,15,15,15,15,15,00
DATA 15,15,15,15,15,15,15,15,15

SLEEP
CLS

You can use these (though why you would i have no idea) if you want

All i need is the engine and i'm good to go....*runs off to make space invaders engine*

{edit} engine complete, now, how am i gonna have the guy shoot...
@thedarkjay:
why not use fb? its bload supports bitmaps.

(at least in the .12b changelog it says "- BLOAD now supports loading BMP files (lillo)" so i assume it works)
Quote:@thedarkjay:
why not use fb? its bload supports bitmaps.

(at least in the .12b changelog it says "- BLOAD now supports loading BMP files (lillo)" so i assume it works)

:o Whoa, that's a dream come true.... :roll: ..
Quote:@thedarkjay:
why not use fb? its bload supports bitmaps.

(at least in the .12b changelog it says "- BLOAD now supports loading BMP files (lillo)" so i assume it works)

i do not have my own computer, how big is freebasic, anything over the size of a floppy is a no-no
*Mit shakes his head*...deprived young child.....
Quote:
dumbledore Wrote:@thedarkjay:
why not use fb? its bload supports bitmaps.

(at least in the .12b changelog it says "- BLOAD now supports loading BMP files (lillo)" so i assume it works)

i do not have my own computer, how big is freebasic, anything over the size of a floppy is a no-no

It wont fit in a floppy, tho it fit in a Zip disk if the comp you are using has one... D: drive I think, funky looking things, almost like a floppy, but convex in shape.. :wink:
Could i put it on/run it off a CD
Quote:Could i put it on/run it off a CD

Yep, if the comp has got a burner... dubbed CD-R somewhere on the CD door.. or CD-W, either way.. :wink:
Pages: 1 2 3 4 5 6 7 8