Jump to content

simple little game v2


pieeater
 Share

Recommended Posts

this is a fun little script where you have to dodge the evil 0's and get to the red goal. use the arrow keys to move and esc to exit the script manually. please tell me how you like it, its my first acitual program that dose something.

also it would help me alot if you could look at my source code and give me suggestions cuz im pretty new to autoit

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <Misc.au3>

$x=290
$y=300
$x1=290
$y1=313
$Lx=310
$Ly=285
$Lx1=300
$Ly1=320
$left=50
$top=100
$iXGoal = 300
$iYGoal = 300
$iX = 1
$iY = 1
$iX2 = 390
$iY2 = 0
$iX3 = 0
$iY3 = 250
$iX4 = 250
$iY4 = 320
$iDelta = 1
$iDeltax = -1
$iDeltay = 1
$iDeltax2 = 1
$iDeltax3 = 1
$iDeltay3 = -1
HotKeySet("{esc}", "terminate")

$hGui = GUICreate("lol123",400,400,10,10)
$lable = GUICtrlCreateLabel("use the arrow keys to move the arrow into the goal",50,50)
$hLabel = GUICtrlCreateLabel("0", $iX, $iY, 10, 15)
$hLabel2 = GUICtrlCreateLabel("0", $iX2, $iY2, 10, 15)
$hLabel3 = GUICtrlCreateLabel("0", $iX3, $iY3, 10, 15)
$hLabel4 = GUICtrlCreateLabel("0", $iX4, $iY4, 10, 15)
$lable4 = GUICtrlCreateLabel("000000000000000000", $Lx, $Ly)
$lable5 = GUICtrlCreateLabel("0", $x, $y)
$lable6 = GUICtrlCreateLabel("0", $x1, $y1)
$lable7 = GUICtrlCreateLabel("000000000000000000", $Lx1, $Ly1)
$lable2 = GUICtrlCreateLabel("~~>",$left,$top,25,18)
GUICtrlSetBkColor(-1,0xff0000);just to see
$lable3 = GUICtrlCreateLabel("GAOL",$iXGoal,$iYGoal,30,18)
GUICtrlSetBkColor(-1,0xff0000);just to see
GUISetState()
AdlibRegister("_Win",1)

While 1
    Sleep(10)
    $nMsg = GUIGetMsg()
    If $nMsg = $GUI_EVENT_CLOSE Then Exit

    If _IsPressed(25) Then _LEFT()
    If _IsPressed(26) Then _UP()
    If _IsPressed(27) Then _RIGHT()
    If _IsPressed(28) Then _DOWN()

    ; Change the coordinates
    $iX += $iDelta
    $iY += $iDelta
    $iX2+= $iDeltax
    $iY2+= $iDeltay
    $iX3+= $iDeltax2
    $iX4+= $iDeltax3
    $iY4+= $iDeltay3
    ; Toggle the delta at the ends of the run
    If $iX = 300 Then
        $iDelta = -1
        Sleep(100)
    ElseIf $iX = 0 Then
        Sleep(100)
        $iDelta = 1
    EndIf

    If $iX2 = 390 And $iY2 = 0 Then
        $iDeltax = -1
        $iDeltay = 1
    ElseIf $iX2 = 0 And $iY2 =390  Then
        $iDeltax = 1
        $iDeltay = -1
    EndIf

    If $iX4 = 325 And $iY4 = 245 Then
        $iDeltax3 = -1
        $iDeltay3 = 1
    ElseIf $iX4 = 250 And $iY4 = 320 Then
        $iDeltax3 = 1
        $iDeltay3 = -1
    EndIf

    If $iX3 = 0 Then
        $iDeltax2 = 1
    ElseIf $iX3 = 390 Then
        $iDeltax2 = -1
    EndIf

    If $Lx-25<=$left And $left<=$Lx+100 And $Ly-18<=$top And $top<=$Ly+18 Then
        MsgBox(0, "awh","you lose")
        Exit
    EndIf

    If $Lx1-25<=$left And $left<=$Lx1+100 And $Ly1-18<=$top And $top<=$Ly1+18 Then
        MsgBox(0, "awh","you lose")
        Exit
    EndIf

    If $x-25<=$left And $left<=$x+15 And $y-10<=$top And $top<=$y+10 Then
        MsgBox(0, "awh","you lose")
        Exit
    EndIf

    If $x1-25<=$left And $left<=$x1+15 And $y1-10<=$top And $top<=$y1+10 Then
        MsgBox(0, "awh","you lose")
        Exit
    EndIf

    If $iX-15<=$left And $left<=$iX+15 And $iY-18<=$top And $top<=$iY+18 Then
        MsgBox(0, "awh","you lose")
        Exit
    EndIf

    If $iX2-15<=$left And $left<=$iX2+15 And $iY2-18<=$top And $top<=$iY2+18 Then
        MsgBox(0, "awh","you lose")
        Exit
    EndIf

    If $iX3-15<=$left And $left<=$iX3+15 And $iY3-18<=$top And $top<=$iY3-18  Then
        MsgBox(0, "awh","you lose")
        Exit
    EndIf

    If $iX4-25<=$left And $left<=$iX4+15 And $iY4-18<=$top And $top<=$iY4+18  Then
        MsgBox(0, "awh","you lose")
        Exit
    EndIf

; Move the label
    ControlMove($hGUI, "", $hLabel4, $iX4, $iY4)
    ControlMove($hGUI, "", $hLabel3, $iX3, $iY3)
    ControlMove($hGUI, "", $hLabel2, $iX2, $iY2)
    ControlMove($hGUI, "", $hLabel, $iX, $iY)

WEnd

Func terminate()
    Exit
EndFunc

Func _Win()
    If $iXGoal-25<=$left And $left<=$iXGoal+30 And $iYGoal-18<=$top And $top<=$iYGoal+18 Then
        MsgBox(64,"Congratulation!","We have a winner!")
        Exit
    EndIf
EndFunc

Func _LEFT()
    $left=$left-3
    ControlMove($hGui,"",$lable2, $left,$top)
EndFunc

Func _RIGHT()
    $left=$left+3
    ControlMove($hGui,"",$lable2, $left,$top)
EndFunc

Func _UP()
    $top=$top-3
    ControlMove($hGui,"",$lable2, $left,$top)
EndFunc

Func _DOWN()
    $top=$top+3
    ControlMove($hGui,"",$lable2, $left,$top)
EndFunc

updated 4/17/2011:

i added some evil 0's and made diagonal movement possable.

lable game.au3

Edited by pieeater

[spoiler]My UDFs: Login UDF[/spoiler]

Link to comment
Share on other sites

thanks :unsure: right now im adding some evil 0's and making it easyer to move thanks to some help on another thing i was looking into earlyer. also about the graphics i wouldnt know how to add them at all. wldnt i have to add a pic to the background of the main gui and then disable it?

[spoiler]My UDFs: Login UDF[/spoiler]

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...