mirror of
https://github.com/Pecusx/Young-lumberjack.git
synced 2026-05-21 06:39:43 +02:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ffd3a1907a | |||
| bc0e838d79 | |||
| 23471cf054 | |||
| dd9226eb5a | |||
| 72cb8c8f37 |
+8
-23
@@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
;---------------------------------------------------
|
;---------------------------------------------------
|
||||||
.macro build
|
.macro build
|
||||||
dta d"1.07" ; number of this build (4 bytes)
|
dta d"1.04" ; number of this build (4 bytes)
|
||||||
.endm
|
.endm
|
||||||
|
|
||||||
.macro RMTSong
|
.macro RMTSong
|
||||||
@@ -57,8 +57,7 @@
|
|||||||
.zpvar SpeedTableAdr .word
|
.zpvar SpeedTableAdr .word
|
||||||
.zpvar Difficulty .byte ; 0 - normal, 1 - easy
|
.zpvar Difficulty .byte ; 0 - normal, 1 - easy
|
||||||
.zpvar LumberjackDir .byte ; 2 - on left , 1 - on right
|
.zpvar LumberjackDir .byte ; 2 - on left , 1 - on right
|
||||||
.zpvar Paddle1State .byte
|
.zpvar PaddleState .byte
|
||||||
.zpvar Paddle2State .byte
|
|
||||||
.zpvar LowCharsetBase .byte
|
.zpvar LowCharsetBase .byte
|
||||||
.zpvar displayposition .word
|
.zpvar displayposition .word
|
||||||
.zpvar LastKey .byte ; $ff if no key pressed or last key released
|
.zpvar LastKey .byte ; $ff if no key pressed or last key released
|
||||||
@@ -1807,10 +1806,8 @@ RIPLoop
|
|||||||
jsr GetKeyFast
|
jsr GetKeyFast
|
||||||
cmp #@kbcode._space ; space, Start
|
cmp #@kbcode._space ; space, Start
|
||||||
beq restart
|
beq restart
|
||||||
lda STRIG0
|
cmp #@kbcode._tab ; TAB, 1st joy button
|
||||||
beq restart
|
beq restart
|
||||||
; cmp #@kbcode._tab ; TAB, 1st joy button
|
|
||||||
; beq restart
|
|
||||||
lda RTCLOK+1
|
lda RTCLOK+1
|
||||||
cmp #2
|
cmp #2
|
||||||
bne RIPLoop
|
bne RIPLoop
|
||||||
@@ -3615,11 +3612,10 @@ notpressedJoyGetKey
|
|||||||
;fire
|
;fire
|
||||||
lda STRIG0
|
lda STRIG0
|
||||||
beq JoyButton
|
beq JoyButton
|
||||||
.IF TARGET = 800 ; More joy buttons , Select and Option key only on A800
|
.IF TARGET = 800 ; Second joy button , Select and Option key only on A800
|
||||||
jsr Check3button ; Third joy button
|
jsr Check2button
|
||||||
bcc JoyButton ; like First button
|
|
||||||
jsr Check2button ; Second joy button
|
|
||||||
bcc SecondButton
|
bcc SecondButton
|
||||||
|
bne checkSelectKey
|
||||||
checkSelectKey
|
checkSelectKey
|
||||||
lda CONSOL
|
lda CONSOL
|
||||||
and #%00000010 ; Select
|
and #%00000010 ; Select
|
||||||
@@ -3631,8 +3627,6 @@ checkSelectKey
|
|||||||
and #%00000001 ; Start
|
and #%00000001 ; Start
|
||||||
beq StartPressed
|
beq StartPressed
|
||||||
.ENDIF
|
.ENDIF
|
||||||
lda STRIG1
|
|
||||||
beq SecondButton
|
|
||||||
lda #@kbcode._none
|
lda #@kbcode._none
|
||||||
bne getkeyend
|
bne getkeyend
|
||||||
OptionPressed
|
OptionPressed
|
||||||
@@ -3657,15 +3651,8 @@ Check2button
|
|||||||
lda PADDL0
|
lda PADDL0
|
||||||
and #$c0
|
and #$c0
|
||||||
eor #$C0
|
eor #$C0
|
||||||
cmp Paddle1State
|
cmp PaddleState
|
||||||
sta Paddle1State
|
sta PaddleState
|
||||||
rts
|
|
||||||
Check3button
|
|
||||||
lda PADDL1
|
|
||||||
and #$c0
|
|
||||||
eor #$C0
|
|
||||||
cmp Paddle2State
|
|
||||||
sta Paddle2State
|
|
||||||
rts
|
rts
|
||||||
.ENDIF
|
.ENDIF
|
||||||
.endp
|
.endp
|
||||||
@@ -3690,8 +3677,6 @@ StillWait
|
|||||||
bne StillWait
|
bne StillWait
|
||||||
lda STRIG0
|
lda STRIG0
|
||||||
beq StillWait
|
beq StillWait
|
||||||
lda STRIG1
|
|
||||||
beq StillWait
|
|
||||||
.IF TARGET = 800
|
.IF TARGET = 800
|
||||||
lda SKSTAT
|
lda SKSTAT
|
||||||
and #%00000100 ; any key
|
and #%00000100 ; any key
|
||||||
|
|||||||
Binary file not shown.
@@ -10,7 +10,7 @@
|
|||||||
fcnt .ds 2
|
fcnt .ds 2
|
||||||
fadr .ds 2
|
fadr .ds 2
|
||||||
fhlp .ds 2
|
fhlp .ds 2
|
||||||
cloc .ds 2
|
cloc .ds 1
|
||||||
regA .ds 1
|
regA .ds 1
|
||||||
regX .ds 1
|
regX .ds 1
|
||||||
regY .ds 1
|
regY .ds 1
|
||||||
@@ -78,7 +78,8 @@ _lp lda trig0 ; FIRE #0
|
|||||||
and #1
|
and #1
|
||||||
beq stop
|
beq stop
|
||||||
|
|
||||||
cpw cloc #500 ; timer 10s
|
lda cloc
|
||||||
|
cmp #200 ; timer - 4s.
|
||||||
bcs stop
|
bcs stop
|
||||||
|
|
||||||
lda skctl
|
lda skctl
|
||||||
@@ -193,7 +194,7 @@ VBL
|
|||||||
|
|
||||||
mva #@dmactl(standard|dma|lineX1|players|missiles) dmactl ;set new screen width
|
mva #@dmactl(standard|dma|lineX1|players|missiles) dmactl ;set new screen width
|
||||||
|
|
||||||
inw cloc ;little timer
|
inc cloc ;little timer
|
||||||
|
|
||||||
; Initial values
|
; Initial values
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user