Family BASIC Super Thread

Started by UglyJoe, July 05, 2015, 07:05:15 pm

Previous topic - Next topic

julgr

Here's a useful page on the keyboard matrix and hardware interface.

https://wiki.nesdev.com/w/index.php/Family_BASIC_Keyboard

It's on my list of future projects to create a USB adapter for my Family Basic keyboard. Some day...

leadedsolder

Does anyone know how to squelch the annoying background hum/noise that seems to be present in Game BASIC? I've muted the TV, but it makes for a little extra work.

dave99

Quote from: PALCOLOR on July 11, 2020, 08:10:37 pmUnfortunately I don't have a manual.
Cartridge only.

Link to ROM in this forum
I know that it is not desirable to attach it.
Please forgive me.

Playbox BASIC (Japan) (v1.0).zip

I have the manual for Family Basic v3
https://gamefaqs.gamespot.com/nes/938747-family-basic-v3/faqs/59317

dave99

Quote from: leadedsolder on May 09, 2021, 01:50:10 pmDoes anyone know how to squelch the annoying background hum/noise that seems to be present in Game BASIC? I've muted the TV, but it makes for a little extra work.

Try making an audio decoupling toroidal transformer
https://www.epanorama.net/documents/groundloop/audio_isolator_building.html

fredJ

I have this guidebok from Famitsu, it says how to get to 256 levels in Super Mario Bros. Same trick as you can do with Tennis.

I don't know if you guys know about it.

Selling  Japanese games in Sweden since 2011 (as "japanspel").
blog: http://japanspel.blogspot.com

P

An article describing the same thing is on Famicom World's frontpage. But it is indeed relevant to this thread. The BASIC code is found in the article.


VeganLies2Me

I may look like I'm egoistical with this but I think my game could be a nice addition to this thread, mainly because I released the source code.
https://vl2m-studio.itch.io/satin

smilimko

I'm wondering why the official family basic v3 manual does not have any mention of two commands (or maybe functions): SPC and TAB. These keywords can be found when viewing a memory dump. Does anybody know what they do and how they are used?

P

In other BASIC dialects, SPC() is used with PRINT for printing a specified number of spaces and TAB() is for printing as many spaces is needed to reach a set tabulator position.

That syntax does not seem to work in Family BASIC V3 though, I'm guessing neither of them are implemented and Hudson just forgot to remove the tokens or they are just part of some leftover code.

leadedsolder

December 26, 2024, 09:14:43 pm #40 Last Edit: December 26, 2024, 09:58:42 pm by leadedsolder
MOVE is kind of dumbfounding me. I'm using Family BASIC 2.1a, and trying to do a space shooter.

I decided I would use SPRITE for the space ship, and MOVE for the shots from the space ship. Obviously, I only want to have one at a time, so I've got code kind of like this:

10 X = 100 : Y = 100 : F = 0
11 DEF MOVE(0) = SPRITE(12, 3, 2, 128, 0, 0) ' laser shot
... sprite initialization here ...
30 REM loop
31 SPRITE 0,X,Y
... input handling, moving X and Y about on STICK() ...
40 S = STRIG(0)
50 IF (S AND 8) <> 0 THEN GOSUB 1500
51 IF (S AND 8) = 0 THEN F = 0
60 GOTO 30

1500 REM fire button handling
1501 IF F = 1 THEN RETURN
1502 F = 1
1503 POSITION 0, X + 4, Y + 4 ' put shot in front of space ship
1504 MOVE 0 ' send the shot on its way
1510 RETURN

if I tap the fire button, and then wait for the MOVE to clock out 256 pixels of movement, then hit the fire button again, it consistently clocks out 256 pixels of movement each time.

However, if I tap the fire button multiple times (interrupting the MOVE and starting it over again) it seems like the "counter" doesn't reset from being POSITION'd. It will count out fewer than 256 pixels before stopping short.

If I tap the button just right, the shot will actually not even move!

I've tried ERA 0 and CUT 0 before POSITION but they don't seem to make a difference. Is there a better way to work around this bug than redefining DEF MOVE(0) = ... inside my fire button handler? That seems to work, but feels inelegant.

It would also be nice if I could make a MOVE go a little faster. 1 (which the manual says is the fastest speed) is very boring.

P

December 27, 2024, 04:46:12 pm #41 Last Edit: December 27, 2024, 04:55:56 pm by P
From reading the manual it seems to me that you need to use DEF MOVE each iteration in order to reset the distance counter. POSITION only changes the position and not the distance counter. CUT and ERA also doesn't seem to affect the distance counter.
I guess that if you find out where it's stored in RAM, you could POKE the distance counter to reset it manually.

The manual says that MOVE is quite limited in speed, so the only way to move faster is to move the sprites manually using DEF SPRITE and SPRITE commands, coding your own metasprites, but that requires a lot more code (and I'm not sure it's faster for larger metasprites). I think these are just the limitations of BASIC, it's interpreted in real time so speed is hurt compared to when programming in assembly.

The secret to coding your own metasprites is to only move the metasprite's "hotspot" (which can be anywhere in the metasprite but is usually defined to be in the middle of it) and have the sprites drawn each frame based on a relative distance from this hotspot.

leadedsolder

Thanks, that's what I thought, unfortunately.

I'm going to need to do collision by hand anyway (since I'm not in V3) so I guess manually animating the position of a 1-frame sprite isn't that big of a deal either.

P

Here are some things that I think are worthy additions to the thread:

PS/2 keyboard adapter (and PS/2mouse)
Made by Emerson who is a member here, but I don't think he posted his design here. It's a prototype design so it's not clear if it works though.



USB keyboard adapter
Later in the same thread as above, Bitcore posted his design which uses a USB keyboard instead (he gave up on PS/2). It emulates the Family BASIC keyboard, the Subor keyboard and mouse and the Hori Track trackball, which is the closest thing to an official mouse for the Famicom. It's intended to bring all the features of a USB keyboard to the Famicom which homebrew may use.
He also made Nesmon, which is a Famicom version of "Wozmon" the monitor software used with the Apple I computer, as well as yet another set of versions of Microsoft BASIC.



Family BASIC disk version
There was an unofficial, yet legal, version of Family BASIC for the Famicom Disk System called "Disk BASIC" made possible by I2 (read as "Aitsuu"), the creators of Tonkachi Editor and Souseiki Famy among other things. The instructions and required program listings were found in some magazines.

The advantages of Disk BASIC includes:
  • Boot directly into BASIC like on V3,
  • more RAM than even V3 offers (8126 byte),
  • all the possibilities of CHR RAM (meaning fully redefinable character and sprite pattern data instead of being limited to using Mario, Lady, crabs, nitanita etc) and
  • FDS hardware access (saving BASIC programs to empty disk cards perhaps?).
Of course there is no disk I/O routines so the last point would require the user to do this by himself.

It's created using the official Family BASIC cartridge & keyboard, a Famicom with FDS, a tape recorder, Tonkachi Editor (which is a sort of hex editor on a disk card), a blank FDS disk card to write it to (both sides needed), a blank tape and the listing of a special BASIC program that you would have to type in.
With FDSStick or the new FDSkey we can create an unlimited amount of empty disks, so the empty disk requirement isn't really a problem.
I guess you would also need an FDS disk drive that has disabled write protection so you can write full disks, but the FDSStick/FDSkey solves this too.

The procedure is basically done by writing a program that dumps the ROM to the tape, preparing the blank disk by using Tonkachi Editor to make it bootable, boot the prepared disk and use it to load the ROM from tape to save it on the disk's side B, use Tonkachi Editor again to finish Disk BASIC which is now stored on side B.
If Family BASIC V2.1 was used, Disk BASIC will be "2.1D".
BG GRAPHICS editor is executed by typing BGTOOL just like on V3.

Alternatively I2 sold an "I2 Disk Basic Generator Kit" for creating Disk BASIC using their Souseiki Famy I2 copier.

Enri also has a webpage that describes how to do it using Mesen on a modern computer.

Here is the original discussion thread.