From f0de6c169422688c9de6eab61fbd99d1915181cc Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Sat, 21 Sep 2024 23:24:09 -0400 Subject: [PATCH] peasant: update tips notice --- games/peasant/title/Makefile | 2 +- games/peasant/title/{directions.s => tips.s} | 19 ++++++++++++------- games/peasant/title/title.s | 2 +- 3 files changed, 14 insertions(+), 9 deletions(-) rename games/peasant/title/{directions.s => tips.s} (66%) diff --git a/games/peasant/title/Makefile b/games/peasant/title/Makefile index 23faa53f..cd4f5c0e 100644 --- a/games/peasant/title/Makefile +++ b/games/peasant/title/Makefile @@ -13,7 +13,7 @@ title.o: title.s ../qload.inc \ ../music/music.inc ../music/duet.s \ graphics_title/title_graphics.inc \ graphics_title/altfire.inc \ - directions.s \ + tips.s \ ../pt3_lib/pt3_lib_mockingboard_patch.s ca65 -o title.o title.s -l title.lst diff --git a/games/peasant/title/directions.s b/games/peasant/title/tips.s similarity index 66% rename from games/peasant/title/directions.s rename to games/peasant/title/tips.s index fd457b5b..9fd0ca65 100644 --- a/games/peasant/title/directions.s +++ b/games/peasant/title/tips.s @@ -1,7 +1,7 @@ - ;************************ ; Tips ;************************ + directions: lda #<(tips_zx02) sta zx_src_l+1 @@ -33,15 +33,17 @@ directions_loop: rts +; FIXME: should we describe backspace somehow? + directions_text: ;0123456789012345678901234567890123456789 .byte 4,46,"Here's how things work round here:",0 -.byte 0,60,"Use ARROWS or W,A,S,D to move",0 -.byte 0,69,"Press RETURN to enter commands",0 -.byte 0,78,"-Look around by typing stuff like",0 -.byte 1,87,"'look tree' or just plain 'look'",0 -.byte 0,96,"-Talk to folks by typing stuff like",0 -.byte 1,105,"'talk man'",0 +.byte 0,60,"Use ARROWS to move ;,/ also up,down",0 +.byte 0,69,"Backspace using DELETE or Control-B",0 +.byte 0,78,"Press RETURN to enter commands",0 +.byte 0,87,"-Look around by typing stuff like",0 +.byte 1,96,"'look tree' or just plain 'look'",0 +.byte 0,105,"-Talk to folks, for example 'talk man'",0 .byte 0,114,"-Take items by typing 'get (item)'",0 .byte 0,123,"-Use items by typing 'use (item)' You",0 .byte 1,132,"can also 'give (item)' 'throw (item)'",0 @@ -50,3 +52,6 @@ directions_text: .byte 0,159,"-Type 'save' to save your game and",0 .byte 1,168,"'load' to load one.",0 .byte 7,180,"press any key to start game",0 + +;.byte 0,96,"-Talk to folks by typing stuff like",0 +;.byte 1,105,"'talk man'",0 diff --git a/games/peasant/title/title.s b/games/peasant/title/title.s index d8ba8d1e..c7576f57 100644 --- a/games/peasant/title/title.s +++ b/games/peasant/title/title.s @@ -301,7 +301,7 @@ duet_finished: rts -.include "directions.s" +.include "tips.s" .include "../music/duet.s"