Beginner programming enthusiast, want to learn BASIC/write programs for RISC OS
Patrick M (2888) 115 posts |
Hello, I’m pretty new to programming. I at least have a grasp of basic programming concepts (variables, arrays, loops, mathematical operators, etc) but I still don’t know much. I want to learn to program on RISC OS. I’m very fond of Acorn computers and RISC OS. My family had an A3010 when I was young (around 6 years old), and it was the only computer we had for about 4 years until we got a PC in ’98. I always wanted to get into programming but it never really happened. I recently got a Raspberry Pi and RISC OS on an SD card, and I’m excited about RISC OS again. I’ve already bought three books: My current level of programming experience/ability is writing simple bash/shell scripts for Linux. I can post an example of something I’ve written if anyone wants. |
Chris Mahoney (1684) 2165 posts |
There are a couple of guides on the Pi SD card in the Documents.Books directory. “First Steps in Programming RISC OS Computers” is probably the most useful. |
David Feugey (2125) 2709 posts |
http://www.riscos.fr/decouvrez.html There are also more resources for BBC Basic on http://www.bbcbasic.co.uk/bbcbasic.html |
Rick Murray (539) 13840 posts |
Use C if you want more speed than BASIC offers. It is useful to have a knowledge of assembly to write your own veneers to things to use from C, but writing an entire wimp application in assembler is madness. |
Chris Mahoney (1684) 2165 posts |
Indeed; the Style Guide says something to the effect of “we strongly recommend that you use C; the resulting apps will be far easier to maintain than ones written in assembler”. If I had unlimited time then I’d write some C Wimp tutorials based on what I’ve learned so far. I could even do a “C# to RISC OS C” guide, since that’s the path that I’ve ended up taking! |
Michael Emerton (483) 136 posts |
I have to say, references to other languages, whilst in your opinions may be better, BBC BASIC was specified, and such comments are very unhelpful… I do understand that people have preferences, however if I ask for a question stating I am using BASIC, and someone points me to python, C, Java, or anything else, I am unable to progress. The overheads of having to diagnose faults in programming is overwhelming in C, and I know loads who have simply given up as they were told that “C is better”. If you are looking at programming in BBC BASIC, I would like to recommend the Strong help manuals for use after reading tutorials, Reporter to aid with debugging (Essential!), and Basalt and it’s Manual for when limitations of BASIC creep in (Dynamic Arrays, Strings longer than 256 chars, Object Oriented Programming, Simple WIMP Control through Toolbox). After that I would suggest assembler, and then C. I still program in BASIC because, for the most part, it’s fun for me.
Sadly there is more to it than ‘just 32 bitting’ Impression. A lot of restoration work is sadly needed to even get back to the point it was! (Point for another thread I feel :) ) One thing I would say, is there is a lot of help if you are polite enough for any language! :) |
Rick Murray (539) 13840 posts |
C, at least, offers a syntaxically valid program after a compile. It may still contain a thousand bugs but that is true of any language.
Depends what they want to do. For things that involve a lot of number crunching (image editor, for example), C will win every time. |
Steve Fryatt (216) 2105 posts |
If someone is asking for help getting into programming on RISC OS, it’s not unreasonable to point out that there might be other – perhaps better – options than BASIC.
How so? Quite aside from the point Rick makes about a C compiler performing a full compilation on your code before anything gets executed, how is debugging C on RISC OS any worse than debugging BASIC?
Just… No. |
Colin (478) 2433 posts |
Whilst I agree with everything else you say learning BBC BASIC on RISC OS is never wasted even if you switch to another language later. So it’s a good place to start if you know nothing else. Assessing which language to use when you first start is impossible. |
Kevin (224) 322 posts |
If you want BASIC with WIMP then I recommend DR Wimp |
David Williams (2619) 103 posts |
I’ve been tinkering with BBC BASIC for nearly 30 years! (There’s really not many of us left, though…) |
Chris Mahoney (1684) 2165 posts |
I must’ve been getting sleepy; I thought I’d seen BASIC specified, and did a quick skim through the original post before making my comments, but didn’t see it mentioned (other than “basic programming concepts”, which is the generic term rather than the language). Apparently I didn’t look in the subject line :) |
Rick Murray (539) 13840 posts |
I’m not familiar with Dr Wimp1 but I’d echo that recommendation. The alternative, and something we of a certain age did a lot of back in the earlier days, was to write our own Wimp code. This basically involves setting up a load of obscure values in memory blocks and throwing them at various Wimp SWIs. 1 I have my own library based upon the one in “WimpEd”, built up over many years of writing rubbish. ;-) |
Steve Fryatt (216) 2105 posts |
not that obscure. Just set up the window structure in a buffer, and use "SYS “CreateWindow,…”, etc, similar for menus, etc. Superficially true, but there are a lot of subtle things that a good library will quietly do to make your code more robust which are a lot of work to implement if you roll your own each time. Sanity checking of icon flags before manipulating indirected data and bounds checking of buffers are two that spring to mind immediately. Old software is often riddled with such ‘features’ – try loading a file with a name longer than 10 characters into Ovation and watch it trash its window templates, for example. I’d expect modern code to verify that target icons were actually indirected text, then truncate the supplied string to fit the stated buffer size before any attempt to write the data took place. As has been said already, this is 2016 and not 1987. :-) |
Chris Hall (132) 3554 posts |
BASIC? You might not encounter the problem until you hit the offending line. You could always test it using the RISCBasic compiler. Although StrongARM aware, it is 26 bit so would need Aemulor or VRPC. It is syntactically identical to the BASIC Interpreter so does a useful syntax check and has good error reporting. |
Rick Murray (539) 13840 posts |
Assuming one has RISCBasic… |
Rick Murray (539) 13840 posts |
Um… guys? You know my email address for bug reports. ;-) |
Rick Murray (539) 13840 posts |
… I did a self contained BASIC program as an academic exercise. Without comments, the window creation code would be incomprehensible gibberish. |
Colin (478) 2433 posts |
You chose to write it that way – you didn’t have to. You can write jibberish with any language/library |
Steve Drain (222) 1620 posts |
Whilst agreeing with the insanity of defining windows that way, I see you are perpetrating some poor BASIC methods that have nothing to do with the point you are trying to make. As this topic is for a beginner I want to quash them. ;-)
Let BASIC do this with
There is no need to set up and use Wimp_ReportError to get an error window, just:
Nor do you need Wimp_CloseDown in BASIC, although it makes a good pair with Wimp_Initialise. Sorry. |
Steve Pampling (1551) 8170 posts |
If I recall correctly RISCBasic has limitations so I presume you would also have to assume that you were not utilising some feature of BASIC that is not supported by RISCBasic. Nothing is perfect. |
Rick Murray (539) 13840 posts |
Colin:
What would you suggest? While you can do something akin to named constants in BASIC, they will appear as “just another variable” and as such will take space. Standard BASIC does not do structures. So ultimately you are going to end up poking values into memory locations. The question is, how nicely do you want it to be done?
That’s from DrWimp. A random location in the DrWimp library (I just dragged the scrollbar and stopped in an arbitrary place). Reading it as I was typing in out on the PC, I’m guessing it is to do with loading templates and working out indirected stuff for icons? At any rate, it amply demonstrates the issue of “peeking and poking obscure stuff in memory blocks”. Steve:
Thanks. I realised END could do it in one go just after I published it to my blog. It isn’t a big deal, the “desktop app” version that followed the next day threw this away and uses WimpSlot in the !Run file to do the memory reservation.
Noted and corrected on the following day’s program. :-)
It is good practice to use the proper SWI because…
Note the
Ugh. That is just poor practice. You are relying on the fact that the Wimp will notice your task calling OS_Exit to quit, and will implicitly call Wimp_CloseDown for you. Multitasking programs, irrespective of their language, should shut themselves down correctly. References:
You are correct in that you do not need to Wimp_CloseDown. But you should. |
Dave Higton (1515) 3525 posts |
Why on earth create a window that way? a) You’re trying to give BASIC a bad name that it doesn’t deserve. b) You’re insane. c) … Any more suggestions? Use a template editor. |
Colin (478) 2433 posts |
So what? You/DrWimp made a choice to make the code unreadable. You could have given the numbers meaningful names using the tools available in basic (variables) but you couldn’t bear the thought that it may a) use space or b) slow the program down. As you have discovered going through DrWimp there is a price to pay for making your code unreadable ie it’s difficult to maintain/understand. You don’t use meaningful names in compiled language because their use is free you use them to make your code understandable and just because an interpreted language has an overhead for readability it isn’t a reason to make it unreadable. |
Steve Drain (222) 1620 posts |
The context was a wimp program, or it could have been any program run from a file, not in the command line. Who could write a wimp program at the command line? ;-)
The error line I quoted was to be a substitute for the calling of Wimp_ReportError within your error procedure, not on its own.
I thought I implied that. However, a BASIC program does not have to call OS_Exit itself, so the ‘accidental’ action happens. It is documented and reliable. |