Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed terminal code to work bidirectional and added it to the menu #25

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/firmware/badge1.X/build/default/
/firmware/badge-supercon18.X/build/default/
/firmware/badge-supercon18.X/dist/default/
# MPLAB X:
build
debug
dist
firmware/*.X/*
!firmware/*.X/Makefile
!firmware/*.X/nbproject/
firmware/*.X/nbproject/*
!firmware/*.X/nbproject/configurations.xml
!firmware/*.X/nbproject/project.xml
!firmware/*.X/src/

# Python:
*.pyo
*.pyc

# Documentation:
latex

511 changes: 0 additions & 511 deletions firmware/badge-supercon18.X/nbproject/Makefile-default.mk

This file was deleted.

This file was deleted.

69 changes: 0 additions & 69 deletions firmware/badge-supercon18.X/nbproject/Makefile-impl.mk

This file was deleted.

36 changes: 0 additions & 36 deletions firmware/badge-supercon18.X/nbproject/Makefile-local-default.mk

This file was deleted.

13 changes: 0 additions & 13 deletions firmware/badge-supercon18.X/nbproject/Makefile-variables.mk

This file was deleted.

73 changes: 0 additions & 73 deletions firmware/badge-supercon18.X/nbproject/Package-default.bash

This file was deleted.

2 changes: 2 additions & 0 deletions firmware/badge-supercon18.X/nbproject/configurations.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<itemPath>src/vt100.h</itemPath>
<itemPath>src/puzzle.h</itemPath>
<itemPath>src/nyancat.h</itemPath>
<itemPath>src/user_program_term.h</itemPath>
</logicalFolder>
<logicalFolder name="LinkerScript"
displayName="Linker Files"
Expand Down Expand Up @@ -71,6 +72,7 @@
<itemPath>src/nyancat.c</itemPath>
<itemPath>src/user_program.c</itemPath>
<itemPath>src/puzzle.c</itemPath>
<itemPath>src/user_program_term.c</itemPath>
</logicalFolder>
<logicalFolder name="ExternalFiles"
displayName="Important Files"
Expand Down
25 changes: 0 additions & 25 deletions firmware/badge-supercon18.X/nbproject/private/configurations.xml

This file was deleted.

11 changes: 0 additions & 11 deletions firmware/badge-supercon18.X/nbproject/private/private.xml

This file was deleted.

33 changes: 24 additions & 9 deletions firmware/badge-supercon18.X/src/badge.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <stdint.h>
#include "Z80/sim.h"
#include "Z80/simglb.h"

#include "user_program_term.h"


uint16_t basic_loads (int8_t * data, uint16_t maxlen);
Expand Down Expand Up @@ -233,10 +233,17 @@ void show_help(void)
video_set_color(3,1);
stdio_write("Badge keyboard shortcuts:\n");
video_set_color(15,0);
stdio_write(" Reset badge : shift-RESET\n");
stdio_write(" Type underscore: Rshift-dash\n");
stdio_write(" Fast reset: Lshift-Rshift-RESET\n");
stdio_write(" Serial console: Lshift-Rshift-BRK\n");
stdio_write(" Reset badge : Lshift+RESET\n");
stdio_write(" Fast reset: Lshift+Rshift+RESET\n");
stdio_write(" Serial console: Lshift+Rshift+BRK\n");
stdio_write(" Use Rshift for additional characters:\n");
stdio_write(" 1!` 6'^ 9([ 0)] =+~\n");
stdio_write(" -\"_ ;:| /?\\ ,<{ .>}\n");
stdio_write(" Use Lshift+Rshift as Ctrl:\n");
stdio_write(" @=0 A-Z=1-26 (=27 /=28\n");
stdio_write(" )=29 '=30 ==31\n");
stdio_write(" Caps Lock on/off: Lsh+Rsh+UP\n");
stdio_write(" ENTER=c.return, Shift-ENTER=l.feed\n");
video_set_color(1,11);
stdio_write("Badge Documentation:\n");
video_set_color(15,0);
Expand Down Expand Up @@ -323,7 +330,7 @@ void badge_menu(void)
video_gotoxy(TEXT_LEFT+2,PROMPT_Y);
}
}
else if (char_out==NEWLINE)
else if ((char_out==NEWLINE) || (char_out==K_ECR))
{
//Erase where the funny messages are written
clear_crack();
Expand Down Expand Up @@ -366,8 +373,6 @@ void badge_menu(void)
{
stdio_local_buffer_puts("c:\nzork1\n");
video_clrscr();
video_set_color(0,14);
stdio_write("\n\n\n\n\n\nPROTIP:\n\tUse Shift-Enter when playing ZORK!\n\n");
video_set_color(15,0);
wait_ms(2000);
init_z80_cpm();
Expand All @@ -379,6 +384,11 @@ void badge_menu(void)
while (1) loop_puzzle();
}
else if (strcmp(menu_buff,"7")==0)
{
user_term_init();
for (;;) user_term_loop();
}
else if (strcmp(menu_buff,"8")==0)
{
init_userprog();
while (1) loop_userprog();
Expand Down Expand Up @@ -563,7 +573,9 @@ void showmenu(void)
video_gotoxy(TEXT_LEFT,11);
stdio_write("6 - Puzzle");
video_gotoxy(TEXT_LEFT,12);
stdio_write("7 - User Program");
stdio_write("7 - Serial Terminal");
video_gotoxy(TEXT_LEFT,13);
stdio_write("8 - User Program");

show_version();
clear_prompt();
Expand Down Expand Up @@ -812,6 +824,9 @@ void loop_basic (void)
get_stat = stdio_get(&char_out);
if (get_stat!=0)
{
if (char_out==K_ECR)
char_out=NEWLINE;

if (char_out==NEWLINE)
{
stdio_c(char_out);
Expand Down
Loading