platotermClassicMac/terminal.c

245 lines
4.7 KiB
C
Executable File

/**
* PLATOTerm64 - A PLATO Terminal for the Commodore 64
* Based on Steve Peltz's PAD
*
* Author: Thomas Cherryhomes <thom.cherryhomes at gmail dot com>
*
* terminal.c - Terminal state functions
*/
/* Some functions are intentionally stubbed. */
#pragma warn(unused-param, off)
#include <string.h>
#include "terminal.h"
#include "screen.h"
#include "protocol.h"
/**
* ASCII Features to return in Features
*/
#define ASC_ZFGT 0x01
#define ASC_ZPCKEYS 0x02
#define ASC_ZKERMIT 0x04
#define ASC_ZWINDOW 0x08
#define true 1
#define false 0
/**
* protocol.c externals
*/
extern CharMem CurMem;
extern padBool TTY;
extern padBool ModeBold;
extern padBool Rotate;
extern padBool Reverse;
extern DispMode CurMode;
extern padBool FlowControl;
/**
* screen.c externals
*/
extern unsigned char CharWide;
extern unsigned char CharHigh;
extern padPt TTYLoc;
extern unsigned char already_started;
#define FONTPTR(a) (a<<4)
extern unsigned char fontm23[2048];
static unsigned char BTAB[]={0x80,0x40,0x20,0x10,0x08,0x04,0x02,0x01};
static unsigned char u;
static unsigned char curr_word;
/**
* terminal_init()
* Initialize terminal state
*/
void terminal_init(void)
{
terminal_set_tty();
}
/**
* terminal_initial_position()
* Set terminal initial position after splash screen.
*/
void terminal_initial_position(void)
{
TTYLoc.x=0;
TTYLoc.y=239;
}
/**
* terminal_set_tty(void) - Switch to TTY mode
*/
void terminal_set_tty(void)
{
if (already_started)
screen_clear();
TTY=true;
ModeBold=padF;
Rotate=padF;
Reverse=padF;
CurMem=M0;
CurMode=ModeRewrite;
CharWide=8;
/* CharHigh=16; */
TTYLoc.x = 0;
TTYLoc.y = 495;
}
/**
* terminal_set_plato(void) - Switch to PLATO mode
*/
void terminal_set_plato(void)
{
TTY=false;
screen_clear();
}
/**
* terminal_get_features(void) - Inquire about terminal ASCII features
*/
unsigned char terminal_get_features(void)
{
return ASC_ZFGT; /* This terminal can do Fine Grained Touch (FGT) */
}
/**
* terminal_get_type(void) - Return the appropriate terminal type
*/
unsigned char terminal_get_type(void)
{
return 12; /* ASCII terminal type */
}
/**
* terminal_get_subtype(void) - Return the appropriate terminal subtype
*/
unsigned char terminal_get_subtype(void)
{
return 1; /* ASCII terminal subtype IST-III */
}
/**
* terminal_get_load_file(void) - Return the appropriate terminal loadfile (should just be 0)
*/
unsigned char terminal_get_load_file(void)
{
return 0; /* This terminal does not load its resident from the PLATO system. */
}
/**
* terminal_get_configuration(void) - Return the terminal configuration
*/
unsigned char terminal_get_configuration(void)
{
return 0x40; /* Touch panel is present. */
}
/**
* terminal_get_char_address(void) - Return the base address of the character set.
*/
unsigned short terminal_get_char_address(void)
{
return 0x3000; /* What the? Shouldn't this be 0x3800? */
}
/**
* terminal_mem_read - Read a byte of program memory.
* not needed for our terminal, but must
* be decoded.
*/
padByte terminal_mem_read(padWord addr)
{
return (0xFF);
}
/**
* terminal_mem_load - Write a byte to non-character memory.
* not needed for our terminal, but must be decoded.
*/
void terminal_mem_load(padWord addr, padWord value)
{
/* Not Implemented */
}
/**
* Mode5, 6, and 7 are basically stubbed.
*/
void terminal_mode_5(padWord value)
{
}
void terminal_mode_6(padWord value)
{
}
void terminal_mode_7(padWord value)
{
}
/**
* terminal_ext_allow - External Input allowed. Not implemented.
*/
void terminal_ext_allow(padBool allow)
{
/* Not Implemented */
}
/**
* terminal_set_ext_in - Set which device to get input from.
* Not implemented
*/
void terminal_set_ext_in(padWord device)
{
}
/**
* terminal_set_ext_out - Set which device to send external data to.
* Not implemented
*/
void terminal_set_ext_out(padWord device)
{
}
/**
* terminal_ext_in - get an external input from selected device.
* Not implemented.
*/
padByte terminal_ext_in(void)
{
return 0;
}
/**
* terminal_ext_out - Send an external output to selected device
* Not implemented.
*/
void terminal_ext_out(padByte value)
{
}
/**
* terminal_char_load - Store a character into the user definable
* character set.
*/
void terminal_char_load(padWord charnum, charData theChar)
{
memset(&fontm23[FONTPTR(charnum)],0,16);
for (curr_word=0;curr_word<8;curr_word++)
{
for (u=16; u-->0; )
{
if (theChar[curr_word] & 1<<u)
{
fontm23[FONTPTR(charnum)+u^0x0f&0x0f]|=BTAB[curr_word];
}
}
}
}