QUOTE |
I think what you need is to design MLC 68k to be like PreOS and HW3_Patch, I forget the term, but it means that it's a program that's kind of always running in the background. |
QUOTE (Liazon) |
perhaps require a special MLC heading so that MLC games can still be made with the basic editor. MLC will have to search for basic programs with these headers. This alone may be enough |
QUOTE (elfprince13) |
@bfr: contact me if you need help with a parser. I can't code the routines to handle the commands, but I can help with some basic stuff like the parsing itself and probably control structures. |
QUOTE (Ranman @ 23 Sep, 2006, 22:42) |
The TI BASIC editor may impose other limitations too -- I don't know. If you go with the text editor, then you may not have any limitations. |
CODE |
ec1public static double sqrt(double value){ Post by: DJ Omnimaga on December 22, 2006, 04:01:00 pm Post by: bfr on December 23, 2006, 02:14:00 pm I've added full support for integers and floating-point numbers. Both of their ranges are huge and accessing them and storing values to them is really fast. The range for floating-point numbers is 1e-999 to 9.999999999999999e999 the value for integers is -2147483648 to 2147483647. These ranges should be more than enough. :) ![]() The next variable types I'm going to add with the new VAT system are probably going to be "pictures" and strings. EDIT: I've come up with an idea, which I think is pretty awesome. I'm going to allow MLC programs to manipulate the VATs in all sorts of awesome ways, to allow the VAT to act as an array, and to allow pseudo-pointers and all sorts of crazy stuff (there will be normal arrays and regular pointers to be backwards-compatible with MLC 86). Here's some pseudo-code to demonstrate what I mean (kind of a combination of C and MLC and a made-up language :P ![]() %int=534 // First VAT item %int2=745 // Second VAT item IntVatItem(1).name="int2" // Change first VAT item's name to int2 IntVatItem(2).name="int" // Change first VAT item's name to int %int3=55555; // Make third VAT item // Time to use the VAT as an array for(%a=0;%a<3;%a++){ IntVatItem(%a).value=%a if(IntVatItem(%a).name="int2"){ display("Name is int2") } } Post by: bfr on December 29, 2006, 07:04:00 am http://bfr.tifreakware.net/cgi-bin/mlc.cgi (My new website is at http://bfr.tifreakware.net) Post by: DJ Omnimaga on December 31, 2006, 09:25:00 am Post by: elfprince13 on December 31, 2006, 01:27:00 pm ![]() Post by: DJ Omnimaga on December 31, 2006, 01:59:00 pm Post by: Halifax on December 31, 2006, 09:05:00 pm Post by: Liazon on January 01, 2007, 03:11:00 am Post by: bfr on January 17, 2007, 12:34:00 pm Would you all be interested in a demo? I've got finals coming up soon, but if you would like, I could release a demo of MLC within a few weeks. Also, I'm trying to keep MLC 68K backwards-compatible with MLC for the TI-86, but I'm not sure if it's going to be completely compatible with MLC for the Casio AFX, unfortunately, because there was little communication between the one programming MLC for the Casio AFX. The MLC converter will take care of any minor incompatibilities though between MLC 68K and MLC for the TI-86 (and hopefully for the TI-83+, some time), such as changing "|" to indicate a command, supported by MLC 68K but not MLC for the TI-86, to a "#" to indicate a command. I might just have the converter generate errors or warnings for major incompatibilities, such as advanced VAT manipulation. Hopefully, even if MLC 68K and MLC Casio AFX are completed independently, I can let the MLC converter handle any incompatibilities. Post by: DJ Omnimaga on January 17, 2007, 02:07:00 pm Post by: bfr on January 17, 2007, 02:20:00 pm ![]() Post by: DJ Omnimaga on January 17, 2007, 03:07:00 pm ![]() Post by: lachprog on January 18, 2007, 08:15:00 am ![]() I'm looking forward to be able to program in this! And btw, a demo would be nice ;) ![]() Post by: DJ Omnimaga on January 18, 2007, 01:09:00 pm ![]() (now i should remember to check mario 68k progress more often as well %) ![]() Post by: bfr on April 04, 2007, 09:27:00 am Anyway, after not working on MLC 68K in months, and having a lot of time due to Spring Break, I decided to work on it. The code was really disorganized (because things were in the middle of being changed from the static VAT to the dynamic VAT, and because I also just have a bad habit of coding things in a disorganized way) and hard to make sense out of, especially after not doing much C for a while, and there were routines that were partially finished which I didn't really know where I left off, so I've just created a new TIGCC project file (this is not really a new project...just a different file) for an organized rewrite. Basically the only things that I don't need to rewrite are the initial MLC program detection/checking for the "MLC:" header, and the mathematical expression parser (the string parser was supposed to be easier, yet I never finished it...). I'll hopefully have a cool screenshot (or even demo, but probably not) to show to you all by this Saturday, but if not, then the next progress on MLC might occur as late as in May or June, due to a really intense forth quarter history project and other things.... Post by: Madskillz on April 07, 2007, 04:16:00 pm Post by: bfr on April 07, 2007, 04:48:00 pm ![]() I seriously would be really upset with myself if I don't finish MLC within a year (it will hopefully be done by the end of this summer), and there should be a demo probably whenever after I get sprites or something cool like that finished (which might be sometime around June or July). I could release a demo now, but stuff like pausing and clearing the screen and declaring variables isn't that exciting. I'm not really going to be able to work on MLC much the rest of this school year, particularly during the next few weeks, because I have a lot of work - mainly a dreadful forth quarter history project in which I must prepare a varied lesson plan for a few weeks for a unit and then present, in front of the class, a portion of it. Post by: bfr on April 18, 2007, 12:44:00 pm ![]() Here's a screenshot: ![]() The weird stuff being displayed is temporary debugging stuff that shows that it is working, and the error that occurs at the end is because I didn't make the program counter update by the proper amount after declaring a string (which should be fixed by this weekend). Post by: Insanity on April 18, 2007, 12:47:00 pm Post by: Liazon on April 19, 2007, 04:32:00 am good work bfr! Post by: graywolf on April 19, 2007, 11:01:00 am And 89t might support usb68k in the future ;) ![]() ![]() Post by: bfr on April 21, 2007, 12:07:00 pm ![]() And I just finally finished stuff with strings! Meaning that the string parser is finally complete, and strings can be declared and their values can be manipulated. :) ![]() Post by: Halifax on April 21, 2007, 12:44:00 pm Post by: bfr on April 21, 2007, 01:21:00 pm EDIT: I got part of the "text" command working. Its syntax is: text x,y,"String",color . I also am going to try to make it so that the string parser can convert numbers into strings. EDIT AGAIN: The text command almost completely works. Here is a screenshot: ![]() ANOTHER EDIT: Grayscale text is now supported. B) ![]() Post by: graywolf on April 22, 2007, 10:30:00 am Post by: bfr on April 22, 2007, 11:10:00 am ![]() I've been kind of banned from programming though (my mom...) for two weeks (but I have a lot of homework then anyway), except I'm allowed some time on Friday, so don't expect much progress for until those two weeks are over :/ ![]() ![]() Post by: bfr on June 15, 2007, 05:30:00 am I have a question though - what should the tokenized program be? A text file? If so, then it would be editable (even if it is kind of unreadble) from the Text Editor. Or A custom file type? This would make it uneditable from any of TI's editing applications, and would allow for "closed-source" programs (although it wouldn't be too hard to make a detokenizer that converts the tokens in the custom file type back into readable code in a text file). EDIT: I might be able to make it so that users will be able to choose whether the tokenized program is stored in a text file or a custom file, but then I might have to modify some code in the MLC parser/shell.... Post by: bfr on December 27, 2007, 12:43:00 pm I worked on the MLC tokenizer for a few hours yesterday, and then for a few more hours today (after not working on it in months)...and now it's finished. What does it do? It converts human-readable MLC source code (stored in a TI-OS text file) into a more compact format (the custom MLC file type). This of course not only makes the resulting program smaller, but makes the MLC interpreter able to interpret it faster. While at the moment it's fully functional and supports tokenization of all of the MLC commands, I still could probably improve it a bit more to not only make the resulting tokenized programs be smaller, but the MLC tokenizer itself be smaller. Anyway, to give you an example of how much smaller it can make MLC programs, here are some sample inputs and outputs: Input: 30 bytes Output: 21 bytes Input: 51 bytes Output: 42 bytes UPDATE: I've actually found a bug when tokenization certain source files...I'll hopefully have it fixed soon EDIT: The bug is that for whatever reason, sometimes the calculator freezes with the BUSY indicator (TIGCC programmers here...what is this normally a sign of?) after tokenizing a file. Even if you don't know anything about TIGCC/C, any testing at all would be nice. You can download the latest version of the MLC tokenizer with the following links (Remember: The MLC tokenizer is still unstable and may damage your calculator, download at your own risk) http://bfr.tifreakware.net/miscarchives/mlc/mlctok.89z http://bfr.tifreakware.net/miscarchives/mlc/mlctok.9xz http://bfr.tifreakware.net/miscarchives/mlc/mlctok.v2z Note that the file type of the outputted program should be "MLC", and NOT "EXPR" or anything else. http://web.archive.org/web/20060710202041/http://dysfunction.earthforge.com/?p=mlc-readme.php lists some commands you can test with (don't worry about the arguments for the commands...anything, correct or not, should be able to be tokenized at the moment). You can also try typing in random text to see what happens. Anything with the "MLC:" header should get tokenized, otherwise, the tokenizer should return an error. Post by: DJ Omnimaga on December 27, 2007, 01:37:00 pm ![]() Post by: Liazon on December 28, 2007, 04:55:00 pm |