====== CHOMP ====== {{:otros:Chomp_p1.jpg?690|}} ===== Info ===== ^ Author | M.A. Owen | ^ Computer | Amstrad PCW 8256 / 8512 / 9512 | ^ Year | 1990 | ^ Gender | Arcade | ^ Controls | Keyboard | ^ Languages | English | ^ Status | [[preserved|Preserved]] | ===== Screenshots ===== {{:otros:Chomp_screenshot01.png?220}} {{:otros:Chomp_screenshot02.png?220}} {{:otros:Chomp_screenshot03.png?220}} {{:otros:Chomp_screenshot04.png?220}} ===== Description ===== Chomp is a game with a variation on the theme of the classic Hangman. However, this version of an old favorite is definitely anti-capital punishment and sees punishment instead, a battle between a ravenous spider and a caterpillar that seems quite concerned. The player's objective is to guess a hidden word, this being the Executioner. All the words in this version have been related to animals. It's also all single words, no phrases, though this might not be a bad addition to the program if you really want to start testing your friends or kids. Each time an incorrect letter is chosen, you are informed of the fact and a spider descends a little further down its thread from the top right of the screen, ready to snap the caterpillar in two. Each time a correct letter is chosen, the caterpillar is one step closer to freedom. If the whole word is found, the caterpillar runs off the stage only to be forced back, whether you want to play another game or not. You have seven chances to come up with the correct answer; it might have been an idea to try to provide a skill level with a higher or lower number of tries. What makes this version of the game so compelling is the fact that every option has been considered. You don't have to restart CHOMP.BAS every time you want a new game; nor do you have to play through a set of games before you can escape. The spider moves very smoothly just like its prey. Another option thought it is the fact that the game remembers which letters you have already chosen and warns us of the fact that it is trying to reuse one. Overall, CHOMP.BAS would be a nice break for a few minutes for adults and their children that would serve as a quintessential educational tool. The animal names have been stored on the DATA lines at the end of the program. These can obviously be changed or extended when you see fit and you get bored with the game. The scope of this game is very wide and it will provide many people with an enjoyable pastime. ===== Listing ===== * **__Listing - CHOMP.BAS__** 1 ' Chomp by M.A. Owen 2 ' 8000 Plus 3 ' 5 clock=256*PEEK(2)-10 10 GOSUB 600 20 PRINT cl$:ERASE l$:DIM l$(26):c=0:w=0 30 PRINT FNp$(85,0);CHR$(200);CHR$(201);FNp$(85,1);CHR$(202);CHR$(203) 40 PRINT FNp$(84,30);CHR$(204);CHR$(205);CHR$(206);CHR$(207);e$+"H" 50 FOR f=0 TO 27:PRINT FNp$(82,f);CHR$(149):NEXT f 60 PRINT FNp$(0,24)STRING$(82,154)CHR$(157) 70 PRINT FNp$(0,28);STRING$(82,154);CHR$(153);e$+"H" 80 PRINT FNp$(37-LEN(h$)\2,2);e$+"r";"Guess ";h$;e$+"u" 90 PRINT FNp$(0,10);"What is this :"FNp$(18,10);:choice=1+INT(n*RND) 100 IF d$(choice,1)="1" THEN choice=choice+1+n*(choice=n):GOTO 100 110 d$(choice,1)="1":le=0:FOR f=1 TO LEN(d$(choice,0)) 120 IF MID$(d$(choice,0),f,1)=" " THEN PRINT " ";:GOTO 140 130 PRINT CHR$(154);CHR$(154);" ";:le=le+1 140 NEXT f:t=t+1 150 PRINT FNp$(0,16);"Choose a letter";SPACE$(50) 160 i$=LOWER$(INKEY$):IF i$<"a" OR i$>"z" THEN 160 170 IF l$(ASC(i$)-96)="" THEN 190 180 PRINT FNp$(0,16)"You have tried that one."CHR$(7):GOSUB 390:GOTO 150 190 l$(ASC(i$)-96)="1":PRINT FNp$(1+2*(ASC(i$)-96),26);i$;e$+"H" 200 found=0:FOR f=1 TO LEN(d$(choice,0)) 210 IF MID$(d$(choice,0),f,1)<>i$ THEN 230 220 PRINT FNp$(15+3*f,10);i$;" ":c=c+1:found=1 230 NEXT f:IF found=1 AND c"y" THEN 340 ELSE IF t"*":d$(f,0)=i$:d$(f,1)="":READ i$ 650 f=f+1:WEND:t=0:n=f-1 660 IF (PEEK(init)=1) AND (PEEK(init+1)=64) THEN RETURN 670 RESTORE 400:add=spid:FOR g=1 TO 2:f=0:cs=0:READ d$:WHILE d$<>"*" 680 m=VAL("&h"+d$):POKE add+f,m:f=f+1:cs=cs+m+256*((cs+m)>255):READ d$ 690 WEND:READ d$:IF cs<>VAL(d$) THEN PRINT "Mistyped code.":STOP 700 add=60928!:NEXT g:CALL init:RETURN 710 DATA an Animal 720 DATA ass,badger,bat,bear,beaver,bison,boar,buffalo,caribou 730 DATA cat,coypu,deer,dolphin,dormouse,elk,ferret,fox,hamster 740 DATA hare,hedgehog,horse,jackal,lemming,lynx,mink,mole,mongoose 750 DATA moose,mouse,otter,ox,polecat,porcupine,porpoise,rabbit 760 DATA raccoon,rat,reindeer,seal,sheep,shrew,squirrel,stoat,vole 770 DATA walrus,weasel,whale,wolf,donkey,cow,goat,dog,monkey,elephant 780 DATA lion,snake,lizard,frog,tiger,zebra,giraffe,* ===== Controls ===== PCW keyboard ===== Loading the program ===== 1.- Insert the CP/M disc on side 2 2.- Write BASIC and wait for it to load 3.- Remove the CP/M disk and insert the disk containing the Chomp game 4.- Type run "CHOMP" and press the "ENTER" key ===== Extras ===== * Listing of the program in a magazine with a large circulation of the time {{:otros:Chomp_01.jpg?170}} {{:otros:Chomp_02.jpg?170}} {{:otros:Chomp_03.jpg?170}} ===== Download ===== * {{:otros:Chomp.zip|Chomp }}(game in dsk format, compressed with zip)