Weekly Qbasic and Qb64 Lesson Topics
April 20, 2024, 05:57:22 am
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: Want to see a specific Tutorial? ASK!
 
  Home Help Search Arcade Links Staff List Login Register  

Weekly Lesson More Advanced, QB64 1st lesson

Pages: [1]
  Print  
Author Topic: Weekly Lesson More Advanced, QB64 1st lesson  (Read 1686 times)
GarrisonRicketson
Admin
Administrator
Hero Member
*****
Posts: 583



WWW
« on: February 07, 2011, 09:05:32 pm »

Gamelearn008
Code:
   REM GameLearn008
'Demonstartes creating image surfaces,loading graphics to those pages
'Create a game loop and shows the background
'Show hawk animation, create master hawk X and Y for screen placement
'create a sub to move hawk horizontally and vertically with the arrow keys
'Create a YELLOW OBJECT that hawk can capture
'Create a PINK BOUNDARY BOX below hawks claws
'Make sound when boxes intersect!!
DEFLNG A-Z 'any variable with a name starting with the letters a throught to z are LONG types

CONST True = -1, False = NOT (True) 'constants for logic


Video& = _NEWIMAGE(640, 480, 32) 'screen 12 size 32bit colors
SCREEN Video& 'make this the surface the user sees on monitor

Background& = _LOADIMAGE("Cliffinclouds.bmp") 'create the background page
Graphics& = _LOADIMAGE("Hawk_sprite.bmp") 'create the sprite sheet page

Yellow& = _RGB32(255, 255, 0) 'the 32 bit yellow color
Pink& = _RGB32(255, 0, 255)
cycle = 0 'variable to indicate the frame of hawk graphic to use
hX = 100: hY = 100
hhdir = 1 'hhdir =hawk direction 1=east , -1=west
hvdir = 1 'hvdir =hawk direction 1=down , -1=up
Object = 1 'object at rest  =1,captured =2,released and falling =3
Showbox = True: Captured = False

DO
    cycle = cycle + 1 'increment cycle variable
    IF cycle >= 3 THEN cycle = 1 'cycle is 1 or 2 , used to indicate which frame of hawk to show
    GOSUB Getkey
    GOSUB MoveHawk
    _LIMIT 30 '30 frames per second

    _PUTIMAGE , Background&, Video& 'copy the background onto the video page clearing the screen
    _CLEARCOLOR 0, Graphics& 'set clearcolor to black(background color on hawk sprite page)

    SELECT CASE cycle 'logic branch based on what cycle is
        CASE 1
            _PUTIMAGE (hX, hY), Graphics&, Video&, (0, 0)-(87, 59) 'copy the hawks over the background
        CASE 2
            _PUTIMAGE (hX, hY), Graphics&, Video&, (88, 0)-(174, 59) 'copy the hawks over the background
    END SELECT

    LOCATE 20, 1: PRINT "Use arrow keys to move HAWK"
    PRINT " Note the hawk DESTINATION co-ords are (hX, hY) and hhdir="; hhdir; "hvdir="; hvdir
    PRINT "_putimage ("; hX; ","; hY; "),SourcePage,DestinationPage,(SOURCE co-ords)"
    PRINT "The source co-ords change,Frame1=(0, 0)-(87, 59),Frame2=(88, 0)-(174, 59) "
    PRINT chx1, chx2, chy1, chY2, "Yellow circle disappears if bunny captured!"
    IF Showbox = True THEN GOSUB HawkBoundaryBox
    GOSUB Hawkcollision
    IF Captured = False THEN
        CIRCLE (320, 470), 5, Yellow&
        CIRCLE (320, 470), 4, Yellow&
    END IF
    _DISPLAY 'update the monitor
LOOP UNTIL _KEYDOWN(27) 'escape key to exit
SLEEP
SYSTEM

MoveHawk:
'Horizontal (L and R)collision tests
IF hX >= 630 THEN hX = 630: hhdir = -1 'test collision with right side, toggle hhdir to minus
IF hX <= 10 THEN hX = 10: hhdir = 1 'test collision with left side, toggle hhdir to plus

'Vertical (U and D)collision tests
IF hY >= 470 THEN hY = 470: hvdir = -1
IF hY <= 10 THEN hY = 10: hvdir = 1
RETURN

Getkey:
'Arrow keys
IF _KEYDOWN(20480) THEN hY = hY + 1 'down arrow key so add 1
IF _KEYDOWN(18432) THEN hY = hY - 1 'up arrow key so minus 1
IF _KEYDOWN(19200) THEN hX = hX - 1 'left arrow key so minus 1
IF _KEYDOWN(19712) THEN hX = hX + 1 'right arrow key so add 1

IF _KEYDOWN(32) THEN Wantacapture = True 'spacebar
IF _KEYDOWN(100305) THEN Wantarelease = True 'right control button
RETURN

HawkBoundaryBox:
chx1 = hX + 38: chx2 = hX + 58: chy1 = hY + 44: chY2 = hY + 48 'used to monitor onscreen
LINE (hX + 38, hY + 44)-(hX + 58, hY + 52), Pink&, B 'hawks boundary box of his claws
'LINE (bx - 5, 395)-(bx + 5, 405), ORed&, B
RETURN

Hawkcollision:
IF hX + 38 >= 306 AND hX + 58 <= 334 THEN 'this is 14 before and 14 after centre of circle on x axis
    'SOUND 2000, 1
    IF hY + 44 >= 462 AND hY + 48 <= 470 THEN 'this is 8 before and up to the centre of circle
        SOUND 3000, 1
        'check if capture key is down
        'if so then register captured variable as TRUE
        Captured = True
        'next assign circle x and y as some offset of hX and hY figures
        'this way circle can be drawn under hawks feet even if hawk moves!
    END IF
END IF
RETURN
 
« Last Edit: September 07, 2011, 09:50:03 pm by GarrisonRicketson » Report Spam   Logged


Pages: [1]
  Print  
 
Jump to:  

Powered by EzPortal
Bookmark this site! | Upgrade This Forum
SMF For Free - Create your own Forum


Powered by SMF | SMF © 2016, Simple Machines
Privacy Policy