Skip to content

Commit

Permalink
Made 80 column display a cc65 application attribute.
Browse files Browse the repository at this point in the history
So far 80 column display was an attribute of a cc65 platform. Now each cc65 application can ask for 80 column display by defining WITH_80COL. Of course this is ignored by platforms incapable of 80 column display.

I see three types of application:

* Applications not benefitting from 80 column at all and in fact looking better with 40 column display. These are now using 40 column display. Examples: ethconfig, ipconfig

* Applications taking advantage of 80 column display if it is available without drawbacks. These stay as they were. Examples: Telnet server, web server, wget

* Applications needing 80 column display so urgently that it is likely desirable even if the display becomes harder to read. These come now in both flavors allowing the user to choose. Examples: IRC, web browser

Note: This change doesn't actually introduce any 80 column display with drawbacks. This if left to a subsequent change.
  • Loading branch information
oliverschmidt committed Oct 30, 2015
1 parent 634db88 commit fb5d0b7
Show file tree
Hide file tree
Showing 38 changed files with 172 additions and 66 deletions.
6 changes: 5 additions & 1 deletion cpu/6502/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,13 @@ high-level configuration macros may be set:
- Default: 0
- Purpose: Enable UDP support and initialize resolver process on startup.

- WITH_80COL
- Default: 0
- Purpose: Enable 80 column screen.

- WITH_GUI
- Default: 0
- Purpose: Initialize the the CTK process on startup.
- Purpose: Initialize the CTK process on startup.

- WITH_MOUSE
- Default: 0
Expand Down
1 change: 0 additions & 1 deletion examples/email/Makefile.apple2enh.defines

This file was deleted.

1 change: 0 additions & 1 deletion examples/email/Makefile.atarixl.defines

This file was deleted.

1 change: 0 additions & 1 deletion examples/email/Makefile.c128.defines

This file was deleted.

1 change: 0 additions & 1 deletion examples/email/Makefile.c64.defines

This file was deleted.

1 change: 0 additions & 1 deletion examples/ftp/Makefile.apple2enh.defines

This file was deleted.

1 change: 0 additions & 1 deletion examples/ftp/Makefile.atarixl.defines

This file was deleted.

1 change: 0 additions & 1 deletion examples/ftp/Makefile.c128.defines

This file was deleted.

1 change: 0 additions & 1 deletion examples/ftp/Makefile.c64.defines

This file was deleted.

8 changes: 8 additions & 0 deletions examples/irc-80col/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
CONTIKI_PROJECT = irc-client
all: $(CONTIKI_PROJECT)

APPS = irc

CONTIKI = ../..
CONTIKI_WITH_IPV4 = 1
include $(CONTIKI)/Makefile.include
1 change: 1 addition & 0 deletions examples/irc-80col/Makefile.apple2enh.defines
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_MOUSE,WITH_PFS
1 change: 1 addition & 0 deletions examples/irc-80col/Makefile.atarixl.defines
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_MOUSE
1 change: 1 addition & 0 deletions examples/irc-80col/Makefile.c128.defines
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_PFS,MTU_SIZE=1000
1 change: 1 addition & 0 deletions examples/irc-80col/Makefile.c64.defines
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_MOUSE,WITH_PFS
1 change: 1 addition & 0 deletions examples/irc-80col/Makefile.native.defines
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFINES = WITH_GUI
1 change: 1 addition & 0 deletions examples/irc-80col/Makefile.win32.defines
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFINES = WITH_GUI
38 changes: 38 additions & 0 deletions examples/irc-80col/irc-client.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
* Copyright (c) 2010, Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the Institute nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* This file is part of the Contiki operating system.
*
*/

#include "contiki-net.h"
#include "irc.h"

/*---------------------------------------------------------------------------*/
AUTOSTART_PROCESSES(&irc_process);
/*---------------------------------------------------------------------------*/
2 changes: 1 addition & 1 deletion examples/telnet-server/Makefile.apple2enh.defines
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DEFINES = CONNECTIONS=3,WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_REBOOT
DEFINES = CONNECTIONS=3,WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_REBOOT
2 changes: 1 addition & 1 deletion examples/telnet-server/Makefile.c128.defines
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DEFINES = WITH_LOGGING
DEFINES = WITH_LOGGING,WITH_80COL
8 changes: 8 additions & 0 deletions examples/webbrowser-80col/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
CONTIKI_PROJECT = webbrowser
all: $(CONTIKI_PROJECT)

APPS = webbrowser

CONTIKI = ../..
CONTIKI_WITH_IPV4 = 1
include $(CONTIKI)/Makefile.include
1 change: 1 addition & 0 deletions examples/webbrowser-80col/Makefile.apple2enh.defines
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_MOUSE,WITH_PFS
1 change: 1 addition & 0 deletions examples/webbrowser-80col/Makefile.atarixl.defines
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_MOUSE
1 change: 1 addition & 0 deletions examples/webbrowser-80col/Makefile.c128.defines
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_PFS,MTU_SIZE=500
1 change: 1 addition & 0 deletions examples/webbrowser-80col/Makefile.c64.defines
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_MOUSE,WITH_PFS
1 change: 1 addition & 0 deletions examples/webbrowser-80col/Makefile.native.defines
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFINES = WITH_GUI
1 change: 1 addition & 0 deletions examples/webbrowser-80col/Makefile.win32.defines
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFINES = WITH_GUI
38 changes: 38 additions & 0 deletions examples/webbrowser-80col/webbrowser.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
* Copyright (c) 2007, Swedish Institute of Computer Science.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the Institute nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* This file is part of the Contiki operating system.
*
*/

#include "contiki-net.h"
#include "www.h"

/*---------------------------------------------------------------------------*/
AUTOSTART_PROCESSES(&www_process);
/*---------------------------------------------------------------------------*/
2 changes: 1 addition & 1 deletion examples/webserver/Makefile.apple2enh.defines
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DEFINES = CONNECTIONS=4,WITH_LOGGING,WITH_BOOST
DEFINES = CONNECTIONS=4,WITH_LOGGING,WITH_BOOST,WITH_80COL
2 changes: 1 addition & 1 deletion examples/webserver/Makefile.c128.defines
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DEFINES = CONNECTIONS=4,WITH_LOGGING,WITH_BOOST,WITH_PFS
DEFINES = CONNECTIONS=4,WITH_LOGGING,WITH_BOOST,WITH_80COL,WITH_PFS
2 changes: 1 addition & 1 deletion examples/wget/Makefile.apple2enh.defines
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DEFINES = WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_ARGS
DEFINES = WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_ARGS
2 changes: 1 addition & 1 deletion examples/wget/Makefile.c128.defines
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DEFINES = WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_PFS,WITH_ARGS
DEFINES = WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_PFS,WITH_ARGS
20 changes: 13 additions & 7 deletions platform/apple2enh/contiki-conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,23 +42,29 @@
#define CTK_CONF_WIDGETUP_KEY 0x01 /* Ctrl-A */
#define CTK_CONF_WIDGETDOWN_KEY '\t' /* Tab or Ctrl-I */

#if WITH_80COL
#define MOUSE_CONF_XTOC(x) ((x) * 2 / 7)
#else
#define MOUSE_CONF_XTOC(x) ((x) / 7)
#endif
#define MOUSE_CONF_YTOC(y) ((y) / 8)

#define EMAIL_CONF_WIDTH 79
#define EMAIL_CONF_HEIGHT 19
#define EMAIL_CONF_ERASE 0

#define FTP_CONF_WIDTH 38
#define FTP_CONF_HEIGHT 21

#if WITH_80COL
#define IRC_CONF_WIDTH 80
#else
#define IRC_CONF_WIDTH 40
#endif
#define IRC_CONF_HEIGHT 23

#ifndef TELNETD_CONF_MAX_IDLE_TIME
#define TELNETD_CONF_MAX_IDLE_TIME 300
#endif

#if WITH_80COL
#define WWW_CONF_WEBPAGE_WIDTH 80
#else
#define WWW_CONF_WEBPAGE_WIDTH 40
#endif
#define WWW_CONF_WEBPAGE_HEIGHT 19
#define WWW_CONF_HISTORY_SIZE 4
#define WWW_CONF_WGET_EXEC(url) exec("wget", url)
Expand Down
2 changes: 2 additions & 0 deletions platform/apple2enh/contiki-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ main(void)
rebootafterexit();
#endif /* WITH_REBOOT */

#if WITH_80COL
videomode(VIDEOMODE_80COL);
#endif /* WITH_80COL */

process_init();

Expand Down
7 changes: 0 additions & 7 deletions platform/atarixl/contiki-conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,6 @@
#define BORDERCOLOR COLOR_BLACK
#define SCREENCOLOR COLOR_BLACK

#define EMAIL_CONF_WIDTH 39
#define EMAIL_CONF_HEIGHT 19
#define EMAIL_CONF_ERASE 0

#define FTP_CONF_WIDTH 18
#define FTP_CONF_HEIGHT 21

#define IRC_CONF_WIDTH 40
#define IRC_CONF_HEIGHT 23

Expand Down
21 changes: 14 additions & 7 deletions platform/c128/contiki-conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@
#define CTK_CONF_WIDGETUP_KEY CH_F5
#define CTK_CONF_WIDGETDOWN_KEY CH_F7

#if WITH_80COL
#define MOUSE_CONF_XTOC(x) ((x) / 4)
#else
#define MOUSE_CONF_XTOC(x) ((x) / 8)
#endif
#define MOUSE_CONF_YTOC(y) ((y) / 8)

#define BORDERCOLOR COLOR_BLACK
Expand All @@ -55,20 +59,23 @@
#define WIDGETCOLOR_FWIN COLOR_WHITE
#define WIDGETCOLOR_HLINK COLOR_CYAN

#define EMAIL_CONF_WIDTH 79
#define EMAIL_CONF_HEIGHT 20
#define EMAIL_CONF_ERASE 0

#define FTP_CONF_WIDTH 38
#define FTP_CONF_HEIGHT 22

#if WITH_80COL
#define IRC_CONF_WIDTH 80
#else
#define IRC_CONF_WIDTH 40
#endif
#define IRC_CONF_HEIGHT 24

#ifndef TELNETD_CONF_MAX_IDLE_TIME
#define TELNETD_CONF_MAX_IDLE_TIME 300
#endif

#if WITH_80COL
#define WWW_CONF_WEBPAGE_WIDTH 80
#else
#define WWW_CONF_WEBPAGE_WIDTH 40
#endif
#define WWW_CONF_WEBPAGE_HEIGHT 20
#define WWW_CONF_HISTORY_SIZE 0
#define WWW_CONF_FORMS 0
#define WWW_CONF_PAGEATTRIB_SIZE 1500
Expand Down
2 changes: 2 additions & 0 deletions platform/c128/contiki-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ main(void)

#endif /* WITH_ARGS */

#if WITH_80COL
videomode(VIDEOMODE_80COL);
#endif /* WITH_80COL */

process_init();

Expand Down
8 changes: 1 addition & 7 deletions platform/c64/contiki-conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,6 @@
#define WIDGETCOLOR_FWIN COLOR_GRAY3
#define WIDGETCOLOR_HLINK COLOR_CYAN

#define EMAIL_CONF_WIDTH 39
#define EMAIL_CONF_HEIGHT 20
#define EMAIL_CONF_ERASE 0

#define FTP_CONF_WIDTH 18
#define FTP_CONF_HEIGHT 22

#define IRC_CONF_WIDTH 40
#define IRC_CONF_HEIGHT 24

Expand All @@ -70,6 +63,7 @@
#endif

#define WWW_CONF_WEBPAGE_WIDTH 40
#define WWW_CONF_WEBPAGE_HEIGHT 20
#define WWW_CONF_HISTORY_SIZE 4
#define WWW_CONF_WGET_EXEC(url) exec("wget", url)

Expand Down
Loading

0 comments on commit fb5d0b7

Please sign in to comment.