473,387 Members | 1,517 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

BASIC advice wanted.

After some days' hard work I am now the proud possessor of an ANSI C BASIC
interpreter.

The question is, how is it most useful?

At the moment I have a function

int basic(const char *script, FILE *in, FILE *out, FILE *err);

It returns 0 on success or -1 on fail.
and I'm calling it with stdin, stdout and stderr (err is for reporting
errors in the script, not for user errors).

This is fine for test purposes, but realistically it is not going to be
useful for anything beyond teaching newbies how to program in BASIC.

The main motive is to use the BASIC interpreter as a component of editors.
The idea is that a game designer can write a little BASIC program, maybe to
control the diffusion pattern of smoke particles, or maybe for some
AI-related stuff. Since the script is interpreted there is no reason to
recompile.

However setting up temporary files to pass data in and out of the BASIC
seems clumsy. There is also no way in C to specify a "user" FILE *,
something that pops up a Window to get input, for example.

I'm also not happy with the BASIC INPUT statement, it's fine for stdin, but
not so good for reading values from a typical formatted text file. However I
don't want to stray too far from core BASIC, or else the user will have to
learn a new programming language to use the program.
Nov 14 '05 #1
9 2222
"Malcolm" <ma*****@55bank.freeserve.co.uk> wrote in message
news:bt**********@news8.svr.pol.co.uk...
After some days' hard work I am now the proud possessor of an ANSI C BASIC
interpreter.
I doubt it. How do you deal with things like PEEK, POKE, PLOT and all the
other graphics or sound commands in ANSI C?
The question is, how is it most useful?


No, the question is, what is your C question? ;-)

Peter
Nov 14 '05 #2
Peter Pichler <pi*****@pobox.sk> scribbled the following:
"Malcolm" <ma*****@55bank.freeserve.co.uk> wrote in message
news:bt**********@news8.svr.pol.co.uk...
After some days' hard work I am now the proud possessor of an ANSI C BASIC
interpreter.
I doubt it. How do you deal with things like PEEK, POKE, PLOT and all the
other graphics or sound commands in ANSI C?


Perhaps his interpreter interprets a BASIC version which doesn't have
them? ANSI BASIC is incredibly small. It's even smaller than C=64 BASIC
V2.

--
/-- Joona Palaste (pa*****@cc.helsinki.fi) ------------- Finland --------\
\-- http://www.helsinki.fi/~palaste --------------------- rules! --------/
"The question of copying music from the Internet is like a two-barreled sword."
- Finnish rap artist Ezkimo
Nov 14 '05 #3
"Joona I Palaste" <pa*****@cc.helsinki.fi> wrote:

ANSI BASIC is incredibly small.


ANSI BASIC? One learns something new every day!
Nov 14 '05 #4
Peter Pichler <pi*****@pobox.sk> scribbled the following:
"Joona I Palaste" <pa*****@cc.helsinki.fi> wrote:
ANSI BASIC is incredibly small.
ANSI BASIC? One learns something new every day!


Yes. I didn't know about it either until Dan Pop told me. Apparently
it's even missing the IF... THEN structure. The only thing ANSI BASIC
can do in an IF statement is a GOTO. Several other BASIC dialects allow
calling other statements too.
(Though I would be surprised if this was valid BASIC:)

10 FOR I=1 TO 10
20 IF I<9 THEN NEXT I

--
/-- Joona Palaste (pa*****@cc.helsinki.fi) ------------- Finland --------\
\-- http://www.helsinki.fi/~palaste --------------------- rules! --------/
"As a boy, I often dreamed of being a baseball, but now we must go forward, not
backward, upward, not forward, and always whirling, whirling towards freedom!"
- Kang
Nov 14 '05 #5
Joona I Palaste <pa*****@cc.helsinki.fi> scribbled the following:
Peter Pichler <pi*****@pobox.sk> scribbled the following:
"Joona I Palaste" <pa*****@cc.helsinki.fi> wrote:
ANSI BASIC is incredibly small.
ANSI BASIC? One learns something new every day!
Yes. I didn't know about it either until Dan Pop told me. Apparently
it's even missing the IF... THEN structure. The only thing ANSI BASIC
can do in an IF statement is a GOTO. Several other BASIC dialects allow
calling other statements too.
(Though I would be surprised if this was valid BASIC:) 10 FOR I=1 TO 10
20 IF I<9 THEN NEXT I


Well, C=64 BASIC V2 seems to accept it... it's treating "NEXT I" as
"increment I and go back to the FOR command". So therefore the above
is equivalent to:

10 FOR I=1 TO 10
20 IF NOT(I<9) THEN END
30 NEXT I

--
/-- Joona Palaste (pa*****@cc.helsinki.fi) ------------- Finland --------\
\-- http://www.helsinki.fi/~palaste --------------------- rules! --------/
Nov 14 '05 #6

"Peter Pichler" <pi*****@pobox.sk> wrote in message
After some days' hard work I am now the proud possessor of an
ANSI C BASIC interpreter.
I doubt it. How do you deal with things like PEEK, POKE, PLOT
and all the other graphics or sound commands in ANSI C?

It's a cut down BASIC without any hardware-specific commands.
The question is, how is it most useful?


No, the question is, what is your C question? ;-)

That's the C question. Given that I've got a BASIC interpreter, what is the
most useful interface to the rest of the C program that calls it?
Nov 14 '05 #7
Malcolm <ma*****@55bank.freeserve.co.uk> scribbled the following:
"Peter Pichler" <pi*****@pobox.sk> wrote in message
No, the question is, what is your C question? ;-)

That's the C question. Given that I've got a BASIC interpreter, what is the
most useful interface to the rest of the C program that calls it?


Your BASIC interpreter is written in ANSI C, but is your program around
it also written in ANSI C? If not, then you can use a non-standard "pipe
stream" and pass it as an argument to your interpreting function. That
way you can send data between your outer program and your interpreter
efficiently.

--
/-- Joona Palaste (pa*****@cc.helsinki.fi) ------------- Finland --------\
\-- http://www.helsinki.fi/~palaste --------------------- rules! --------/
"That's no raisin - it's an ALIEN!"
- Tourist in MTV's Oddities
Nov 14 '05 #8
On Sun, 04 Jan 2004 10:43:19 +0000, Joona I Palaste wrote:
Malcolm <ma*****@55bank.freeserve.co.uk> scribbled the following:

Given that I've got a BASIC interpreter, what is the
most useful interface to the rest of the C program that calls it?


Your BASIC interpreter is written in ANSI C, but is your program around
it also written in ANSI C? If not, then you can use a non-standard "pipe
stream" and pass it as an argument to your interpreting function. That
way you can send data between your outer program and your interpreter
efficiently.


How about callback functions? Something like:

typedef int (*input_handler)(char**);
typedef int (*output_handler)(const char*);
typedef int (*error_handler)(int,int,char*); /* errno, line, text */

int basic(const char *script,
input_handler ih,
output_handler oh,
error_handler eh);

Giving the calling program the opportunity to define functions to deal
with input, output or errors. These programs may then write to file or
process the error or do whatever they feel like.

(And you can provide handler functions that writes to files if that's
what the user wants them to do.)
--
NPV

"the large print giveth, and the small print taketh away"
Tom Waits - Step right up

Nov 14 '05 #9
Nils Petter Vaskinn <no@spam.for.me.invalid> scribbled the following:
On Sun, 04 Jan 2004 10:43:19 +0000, Joona I Palaste wrote:
Malcolm <ma*****@55bank.freeserve.co.uk> scribbled the following:
Given that I've got a BASIC interpreter, what is the
most useful interface to the rest of the C program that calls it?
Your BASIC interpreter is written in ANSI C, but is your program around
it also written in ANSI C? If not, then you can use a non-standard "pipe
stream" and pass it as an argument to your interpreting function. That
way you can send data between your outer program and your interpreter
efficiently.

How about callback functions? Something like: typedef int (*input_handler)(char**);
typedef int (*output_handler)(const char*);
typedef int (*error_handler)(int,int,char*); /* errno, line, text */ int basic(const char *script,
input_handler ih,
output_handler oh,
error_handler eh); Giving the calling program the opportunity to define functions to deal
with input, output or errors. These programs may then write to file or
process the error or do whatever they feel like. (And you can provide handler functions that writes to files if that's
what the user wants them to do.)


I think this design is good. If this were Java, I'd design the BASIC
interpreter so that I/O is handled by calling interfaces, one called
Input, the other called Output. Implementors of the outside system
would have to implement these interfaces and pass the implementations
as parameters to the interpreter object.

--
/-- Joona Palaste (pa*****@cc.helsinki.fi) ------------- Finland --------\
\-- http://www.helsinki.fi/~palaste --------------------- rules! --------/
"It's not survival of the fattest, it's survival of the fittest."
- Ludvig von Drake
Nov 14 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

75
by: Howard Nease | last post by:
Hello, everyone. I would appreciate any advice that someone could give me on my future career path. Here is my situation: I am a bright Junior in a very well-respected private high school, taking...
8
by: JotM | last post by:
Hi all, I am currently fooling around trying to produce a very basic webpage that can be shown on both computer screens and Nokia series 60 GSM cell phones featuring an XHTML browser. (XHTML-MP...
0
by: Mark Stokes | last post by:
Hi there, I wanted a bit of advice on a program (a prototype) that I am trying to write that uses threads. I will outline what I am attempting to do, and if anyone has any advice on the way I...
2
by: Brian | last post by:
NOTE ALSO POSTED IN microsoft.public.dotnet.framework.aspnet.buildingcontrols I have solved most of my Server Control Collection property issues. I wrote an HTML page that describes all of the...
1
by: john_20_28_2000 | last post by:
Using asp.net, c#, mysql or SQL Server. I have a image uploading and wanted it to be "secure." Each user has their own section to login and upload images. Should I store the images in a database...
0
by: Alex Pavluck | last post by:
Hello. I have always wanted to learn how to write programs as a hobby and Visual Basic 2005 Express seems like the perfect platform. Can someone who is more experience let me know if this is a...
6
by: BJMurphy | last post by:
Hi All, I am used to other SQL engines, and have a few basic questions-- 1)If I wanted to conditionally drop a table, does SQL Server have a way to natively do this? Many SQL implementations...
6
by: Simon Walsh | last post by:
I'm an Electronics student in college and I'm currently working on a project. I was given a circuit diagram for my project, from which I had to design a printed circuit board to be sent off and...
16
by: Ark Khasin | last post by:
I have a memory-mapped peripheral with a mapping like, say, struct T {uint8_t read, write, status, forkicks;}; If I slap a volatile on an object of type struct T, does it guarantee that all...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.