Corrupted Vic 20 game (Not seen before)

History and Preservation Issues

Moderator: Moderators

bokvamme
Vic 20 Afficionado
Posts: 311
Joined: Tue Dec 26, 2006 11:22 am

Post by bokvamme »

The tap contain 2 games.

Haunted House a game that requires 16k
Mother Hen

Haunted Hause is a 2 or 3 part load.
Part 2 and 3 are using the unrecognized loader.
fgasking
Vic 20 Devotee
Posts: 228
Joined: Sun Feb 06, 2005 7:53 am

Post by fgasking »

Wow??!!.. another game on there too??? That is amazing work!

Bokvamme... when i've got all my Tap's ported, you'll have to have a look to see if there is anything missed. :)
User avatar
Mayhem
High Bidder
Posts: 3028
Joined: Mon May 24, 2004 7:03 am
Website: http://www.mayhem64.co.uk
Location: London

Post by Mayhem »

I've been going through your TAPs recently Frank and pulling out anything I can find. I know NBLA went through some of them too in the past and extracted games. So far there's been a handful needed for GB20.

Speaking of which there is a Haunted House in there already but it only requires 3k (might be one of those however that can work with any type of expanded memory). Or could be a new different game. Mother Hen isn't in there for sure though.
Lie with passion and be forever damned...
User avatar
ral-clan
plays wooden flutes
Posts: 3702
Joined: Thu Jan 26, 2006 2:01 pm
Location: Canada

Post by ral-clan »

You guys are amazing. The level of electronics and programming experience on this web site is incredicble.
fgasking
Vic 20 Devotee
Posts: 228
Joined: Sun Feb 06, 2005 7:53 am

Post by fgasking »

I'm hopeful to find more stuff too.... When i've backed up my entire tape collection (blanks, personal recorded stuff etc), i'll happily upload somewhere for people to check out incase there is anything i've missed.

I'll highlight any particular Vic 20 tapes, but you've pretty much seen most of them posted here.

One for the tape experts... I have a old tape which has remains of a SEUCK game I was working on many years ago (Saved in SEUCK file format). It picks up the game half way through the tape, but the tape finishes before all the blocks are loaded in. Hence its missing about 5-10 blocks. However, I am pretty sure I had a second copy at the start of the tape, but for some reason recorded over the start header with a 5/10 block type in cheat for Delta. Would anyone be able to patch over the Delta cheat signals with the SEUCK game start header from half way through and produce a full file? Or is this maybe a step too far? :)
bokvamme
Vic 20 Afficionado
Posts: 311
Joined: Tue Dec 26, 2006 11:22 am

Post by bokvamme »

A correction, the title is: Haunted House Adventure.
bokvamme
Vic 20 Afficionado
Posts: 311
Joined: Tue Dec 26, 2006 11:22 am

First part of Haunted House Adventure

Post by bokvamme »

Here is the basic part of Haunted House Adventure.
Converted by hand from Basic tokens.

10 REM HAUNTED HOUSE ADVENTURE
20 REM ***********************
30 REM THIS VERSION FOR "MICROSOFT" BASIC
40 REM REQUIRES A MINIMUM OF 16K
50 REM SELECT "TEXT MODE" IF NECESSARY
60 REM *******************************
70 V=25:W=36:G=18
80 GOSUB 1600
90 PRINT CHR$(147):PRINT "HAUNTED HOUSE"
100 PRINT "-------------"
110 PRINT "YOUR LOCATION"
120 PRINT D$(RM)
130 PRINT "EXITS:";
140 FOR I=1 TO LEN(R$(RM))
150 PRINT MID$(R$(RM),I,1);",";
160 NEXT I
170 PRINT
180 FOR I=1 TO G
190 IF L(I)=RM AND F(I)=0 THEN PRINT "YOU CAN SEE ";O$(I);" HERE"
200 NEXT I
210 PRINT "========================="
220 PRINT "M$:M$="WHAT"
230 INPUT "WHAT WILL YOU DO NOW";O$
240 V$="":W$="":VB=0:OB=0
250 FOR I=1 TO LEN(O$)
260 IF MID$(O$,I,1)=" " AND V$=""THEN V$=LEFT$(O$,I-1)
270 IF MID$(O$,I-1,1)<>"" THEN W$=MID$(O$,I+1,LEN(O$)-1):I=LEN(O)
280 NEXT I
290 IF W$=""THEN V$==O$
300 FOR I=1 TO
310 IF V$=V$(I) THEN VB=I
320 NEXT I
330 FOR I=1 TO W
340 IF W$=O$(I) THEN LET OB=I
350 NEXT I
360 IF W$="" AND OB=O THEN M$="THAT'S SILLY"
370 IF VB=O THEN VB=V+1
380 IF W$="" THEN M$="I NEED TWO WORDS"
390 IF VB>V AND OB=0 THEN M$="YOU CAN'T '"+O$+"'"
400 IF VB>V AND OB=O THEN M$="YOU DON'T MAKE SENSE"
410 IF VB> AND OB>O AND C(OB)=O THEN M$="YOU DON'T HAVE '"+W$
420 IF F(26)=1 AND VB=13 AND RND(3)<>3 AND VB<>21 THEN M$="BATS ATTACKING!":GOTO 90
bokvamme
Vic 20 Afficionado
Posts: 311
Joined: Tue Dec 26, 2006 11:22 am

Post by bokvamme »

I know line 410 looks funny, but that's how the basic tokens look like.
Luigi
Vic 20 Drifter
Posts: 21
Joined: Fri Sep 23, 2005 8:34 am

Post by Luigi »

Line 300 looks funny as well.
I think line 270 may be wrong as line 420.
Here's the output from CBM BASIC Lister:

Code: Select all

REM CBM BASIC LISTER V2.02 BETA Developed with GTK+ 2.0 and GLADE
REM (C) 2004-06 Luigi Di Fraia
REM LISTING OF FILE: 

REM START ADDRESS: $1201
REM END ADDRESS+1: $166B
REM SIZE (BYTES):   1130

   10 REM HAUNTED HOUSE ADVENTURE
   20 REM ***********************
   30 REM THIS VERSION FOR "MICROSOFT" BASIC
   40 REM REQUIRES A MINIMUM OF 16K
   50 REM SELECT "TEXT MODE" IF NECESSARY
   60 REM *******************************
   70 V=25:W=36:G=18
   80 GOSUB 1600
   90 PRINT CHR$(147):PRINT"HAUNTED HOUSE"
  100 PRINT "-------------"
  110 PRINT "YOUR LOCATION"
  120 PRINT D$(RM)
  130 PRINT "EXITS:";
  140 FOR I=1 TO LEN(R$(RM))
  150   PRINT MID$(R$(RM),I,1);",";
  160 NEXT I
  170 PRINT
  180 FOR I=1 TO G
  190   IF L(I)=RM AND F(I)=0 THEN PRINT "YOU CAN SEE ";O$(I);" HERE"
  200 NEXT I
  210 PRINT "========================="
  220 PRINT M$:M$="WHAT"
  230 INPUT "WHAT WILL YOU DO NOW";O$
  240 V$="":W$="":VB=0:OB=0
  250 FOR I=1 TO LEN(O$)
  260   IF MID$(O$,I,1)=" " AND V$=""THEN V$=LEFT$(O$,I-1)
  270   IF MID$(O$,I+1,1)<>"" THEN W$=MID$(O$,I+1,LEN(O$)-1):I=LEN(O)
  280 NEXT I
  290 IF W$=""THEN V$==O$
  300 FOR I=1 TO
  310   IF V$=V$(I) THEN VB=I
  320 NEXT I
  330 FOR I=1 TO W
  340   IF W$=O$(I) THEN LET OB=I
  350 NEXT I
  360 IF W$>"" AND OB=O THEN M$="THAT'S SILLY"
  370 IF VB=O THEN VB=V+1
  380 IF W$="" THEN M$="I NEED TWO WORDS"
  390 IF VB>V AND OB=O THEN M$="YOU CAN'T '"+O$+"'"
  400 IF VB>V AND OB=O THEN M$="YOU DON'T MAKE SENSE"
  410 IF VB> AND OB>O AND C(OB)=O THEN M$="YOU DON'T HAVE '"+W$
  420 IF F(26)=1 AND RM=13 AND RND(3)<>3 AND VB<>21 THEN M$="BATS ATTACKING!":GOTO 90
Cheers,

Luigi
User avatar
orion70
VICtalian
Posts: 4343
Joined: Thu Feb 02, 2006 4:45 am
Location: Piacenza, Italy
Occupation: Biologist

Post by orion70 »

[OT]

Welcome to Denial, Luigi! Another visitor from Italy... We're a consistent group now :D

Wow! You have been lurking since 2005...

[/OT]
bokvamme
Vic 20 Afficionado
Posts: 311
Joined: Tue Dec 26, 2006 11:22 am

Post by bokvamme »

If you've got the time, please look at the tap Luigi.
I think those blocks after the Haunted House block is cbm loader too, but the pulses are shifted. It's time we get a REAL tap expert have a look :-)
Luigi
Vic 20 Drifter
Posts: 21
Joined: Fri Sep 23, 2005 8:34 am

Post by Luigi »

bokvamme wrote:If you've got the time, please look at the tap Luigi.
I think those blocks after the Haunted House block is cbm loader too, but the pulses are shifted. It's time we get a REAL tap expert have a look :-)
Gimme a couple of additional TAP images of the tape, please. Some data may be recoverable with a bit of work.
I am actually based in UK, so that I can look at the tape itself.
Thank you.

Cheers,

Luigi.
fgasking
Vic 20 Devotee
Posts: 228
Joined: Sun Feb 06, 2005 7:53 am

Post by fgasking »

Hi Luigi,

PM your address and i'd be happy to post along the tape this weekend.

Just out of interest, would the idea in my previous post be possible with regards to a C64 file i'm trying to save?

All the best,

Frank
Luigi
Vic 20 Drifter
Posts: 21
Joined: Fri Sep 23, 2005 8:34 am

Post by Luigi »

fgasking wrote:Just out of interest, would the idea in my previous post be possible with regards to a C64 file i'm trying to save?
Could you please put a link to the post you are referring to or quote it here? Sadly I haven't been following the whole discussion in this thread for I have a very little time.

Cheers,

Luigi.
Luigi
Vic 20 Drifter
Posts: 21
Joined: Fri Sep 23, 2005 8:34 am

Post by Luigi »

orion70 wrote:[OT]

Welcome to Denial, Luigi! Another visitor from Italy... We're a consistent group now :D

Wow! You have been lurking since 2005...

[/OT]
Thank you. Nice to know there are some other geeks from Italy visiting this forum.
Post Reply