added joystick controls to cx16 tehtriz

This commit is contained in:
Irmen de Jong 2022-08-23 00:21:07 +02:00
parent 176ec8ac7d
commit c6c5ff2089
2 changed files with 142 additions and 69 deletions

View File

@ -3,16 +3,6 @@ TODO
For next release For next release
^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^
- add joypad controls to tehtriz x16 version
dpad left = "," (move left)
dpad right = "/" (move right)
controller B/Y btn = "Z" (rotate counter clockwise)
controller A/X btn = "X" (rotate clockwise)
dpad down = "." (descend)
controller B btn = " " (drop)
dpad up (and/or controller X btn) = "C" (hold)
controller start = F1 (new game)
make the 'R' tilemap a backwards R :)
- vm: intermediate code: don't flatten everything. Instead, as a new intermediary step, - vm: intermediate code: don't flatten everything. Instead, as a new intermediary step,
convert the new Ast into *structured* intermediary code. convert the new Ast into *structured* intermediary code.
Basically keep the blocks and subroutines structure, including full subroutine signature information, Basically keep the blocks and subroutines structure, including full subroutine signature information,

View File

@ -28,13 +28,24 @@ main {
ubyte speedlevel ubyte speedlevel
ubyte holding ubyte holding
bool holdingAllowed bool holdingAllowed
ubyte ticks_since_previous_action
ubyte ticks_since_previous_move
sub start() { sub start() {
void cx16.screen_mode(3, false) ; low res void cx16.screen_mode(3, false) ; low res
txt.color2(7,0) ; make sure correct screen colors are (re)set txt.color2(7,0) ; make sure correct screen colors are (re)set
txt.clear_screen() txt.clear_screen()
; gimmick: make a mirrored R
cx16.vpoke(1,$f000+sc:'r'*8+0, %00111110)
cx16.vpoke(1,$f000+sc:'r'*8+1, %01100110)
cx16.vpoke(1,$f000+sc:'r'*8+2, %01100110)
cx16.vpoke(1,$f000+sc:'r'*8+3, %00111110)
cx16.vpoke(1,$f000+sc:'r'*8+4, %00011110)
cx16.vpoke(1,$f000+sc:'r'*8+5, %00110110)
cx16.vpoke(1,$f000+sc:'r'*8+6, %01100110)
cx16.vpoke(1,$f000+sc:'r'*8+7, %00000000)
sound.init() sound.init()
newGame() newGame()
drawBoard() drawBoard()
@ -46,6 +57,14 @@ newgame:
spawnNextBlock() spawnNextBlock()
waitkey: waitkey:
sys.waitvsync()
ticks_since_previous_action++
ticks_since_previous_move++
if ticks_since_previous_action==0
ticks_since_previous_action=255
if ticks_since_previous_move==0
ticks_since_previous_move=255
ubyte time_lo = lsb(c64.RDTIM16()) ubyte time_lo = lsb(c64.RDTIM16())
if time_lo>=(60-4*speedlevel) { if time_lo>=(60-4*speedlevel) {
c64.SETTIM(0,0,0) c64.SETTIM(0,0,0)
@ -76,9 +95,8 @@ waitkey:
} }
ubyte key=c64.GETIN() ubyte key=c64.GETIN()
if key==0 goto waitkey
keypress(key) keypress(key)
joystick(cx16.joystick_get2(1))
goto waitkey goto waitkey
@ -129,15 +147,7 @@ waitkey:
} }
} }
sub keypress(ubyte key) { sub rotate_counterclockwise() {
when key {
157, ',' -> move_left()
29, '/' -> move_right()
17, '.' -> move_down_faster()
145, ' ' -> drop_down_immediately()
'z' -> {
; no joystick equivalent (there is only 1 fire button)
; rotate counter clockwise
drawBlock(xpos, ypos, true) drawBlock(xpos, ypos, true)
if blocklogic.canRotateCCW(xpos, ypos) { if blocklogic.canRotateCCW(xpos, ypos) {
blocklogic.rotateCCW() blocklogic.rotateCCW()
@ -155,8 +165,8 @@ waitkey:
} }
drawBlock(xpos, ypos, false) drawBlock(xpos, ypos, false)
} }
'x' -> {
; rotate clockwise sub rotate_clockwise() {
drawBlock(xpos, ypos, true) drawBlock(xpos, ypos, true)
if blocklogic.canRotateCW(xpos, ypos) { if blocklogic.canRotateCW(xpos, ypos) {
blocklogic.rotateCW() blocklogic.rotateCW()
@ -174,8 +184,8 @@ waitkey:
} }
drawBlock(xpos, ypos, false) drawBlock(xpos, ypos, false)
} }
'c' -> {
; hold sub hold_block() {
if holdingAllowed { if holdingAllowed {
sound.swapping() sound.swapping()
if holding<7 { if holding<7 {
@ -192,6 +202,72 @@ waitkey:
drawHoldBlock() drawHoldBlock()
} }
} }
sub keypress(ubyte key) {
when key {
157, ',' -> move_left()
29, '/' -> move_right()
17, '.' -> move_down_faster()
145, ' ' -> drop_down_immediately()
'z' -> rotate_counterclockwise()
'x' -> rotate_clockwise()
'c' -> hold_block()
}
}
sub joystick(uword joy) {
; note: we don't process simultaneous button presses
when joy {
%1111111111111101 -> {
if ticks_since_previous_move > 5 {
move_left()
ticks_since_previous_move = 0
ticks_since_previous_action = 0
}
}
%1111111111111110 -> {
if ticks_since_previous_move > 5 {
move_right()
ticks_since_previous_move = 0
ticks_since_previous_action = 0
}
}
%1111111111111011 -> {
if ticks_since_previous_move > 5 {
move_down_faster()
ticks_since_previous_move = 0
ticks_since_previous_action = 0
}
}
%1111111101111111 -> {
if ticks_since_previous_action > 200 {
drop_down_immediately()
ticks_since_previous_action = 0
}
}
%1111111110111111 -> {
if ticks_since_previous_action > 20 {
rotate_counterclockwise()
ticks_since_previous_action = 0
}
}
%1011111111111111, %0111111111111111 -> {
if ticks_since_previous_action > 20 {
rotate_clockwise()
ticks_since_previous_action = 0
}
}
%1111111111110111 -> {
if ticks_since_previous_action > 60 {
hold_block()
ticks_since_previous_action = 0
}
}
$ffff -> {
; no button pressed, reset timers to allow button tapping
ticks_since_previous_move = 255
ticks_since_previous_action = 255
}
} }
} }
@ -248,17 +324,20 @@ waitkey:
txt.print("────────────────────────") txt.print("────────────────────────")
c64.CHROUT('I') c64.CHROUT('I')
txt.plot(7, 19) txt.plot(7, 19)
txt.print("│ f1 for new game │") txt.print("│ f1/start for new game │")
txt.plot(7, 20) txt.plot(7, 20)
c64.CHROUT('J') c64.CHROUT('J')
txt.print("────────────────────────") txt.print("────────────────────────")
c64.CHROUT('K') c64.CHROUT('K')
ubyte key = 0 ubyte key
while key!=133 { do {
; endless loop until user presses F1 to restart the game ; endless loop until user presses F1 or Start button to restart the game
cx16.r0 = cx16.joystick_get2(1)
if cx16.r0 & %0000000000010000 == 0
break
key = c64.GETIN() key = c64.GETIN()
} } until key==133
} }
sub newGame() { sub newGame() {
@ -270,6 +349,8 @@ waitkey:
nextBlock = rnd() % 7 nextBlock = rnd() % 7
holding = 255 holding = 255
holdingAllowed = true holdingAllowed = true
ticks_since_previous_action = 0
ticks_since_previous_move = 0
} }
sub swapBlock(ubyte newblock) { sub swapBlock(ubyte newblock) {
@ -316,6 +397,8 @@ waitkey:
txt.print("spc drop") txt.print("spc drop")
txt.plot(29,23) txt.plot(29,23)
txt.print("c hold") txt.print("c hold")
txt.plot(25,24)
txt.print("or joystick #1")
txt.setcc(boardOffsetX-1, boardOffsetY-2, 255, 0) ; invisible barrier txt.setcc(boardOffsetX-1, boardOffsetY-2, 255, 0) ; invisible barrier
txt.setcc(boardOffsetX-1, boardOffsetY-3, 255, 0) ; invisible barrier txt.setcc(boardOffsetX-1, boardOffsetY-3, 255, 0) ; invisible barrier