Welcome,
Guest
. Please
login
or
register
.
Did you miss your
activation email
?
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Home
About
Team
Rules
Stats
Status
Sitemap
Chat
Downloads
Forum
News
Our Projects
Major Community Projects
Recent Posts
Unread Posts
Replies
Tools
SourceCoder3
Other Things...
Omnimaga Radio
TI-83 Plus ASM File Unsquisher
Z80 Conversion Tools
IES TI File Editor
Free RAM areas
Comprehensive Getkeyr table
URL Shortener
Online Axe Tilemap Editor
Help
Contact Us
Change Request
Report Issue/Bug
Team
Articles
Members
View the memberlist
Search For Members
Buddies
Login
Register
Omnimaga
»
Forum
»
Calculator Community
»
Other Calc-Related Projects and Ideas
»
TI Z80
»
MLC - For the TI-83+
« previous
next »
Print
Pages:
1
2
3
[
4
]
5
6
...
9
Go Down
Author
Topic: MLC - For the TI-83+ (Read 19240 times)
0 Members and 1 Guest are viewing this topic.
necro
LV9
Veteran (Next: 1337)
Posts: 1295
Rating: +17/-2
+3 vaporal mustache
MLC - For the TI-83+
«
Reply #45 on:
September 19, 2006, 06:14:00 pm »
why not just have the editor take the letters, parse them for their command equivilants when you run it through the mlc app, and store them as hex. If some one wants to edit, just reverse the process and parse the hex values back into the readable form...then back to hex when saved...etc.
Logged
I'm like a woot burger with awesome fries
VB.Net, C#, C++, Java, Game Maker
DJ Omnimaga
Clacualters are teh gr33t
CoT Emeritus
LV15
Omnimagician (Next: --)
Posts: 55943
Rating: +3154/-232
CodeWalrus founder & retired Omnimaga founder
MLC - For the TI-83+
«
Reply #46 on:
September 20, 2006, 01:39:00 am »
i wonder if this is considered as off topic, but is the 86 version still gonna be done by bfr? or maybe ported from Madskillz 83 version?
Logged
bfr
LV8
Addict (Next: 1000)
Posts: 819
Rating: +4/-0
MLC - For the TI-83+
«
Reply #47 on:
September 20, 2006, 01:10:00 pm »
The latest version of MLC for the TI-86 will be by burntfuse and I. Don't forget that he made all of the other versions and started MLC 3.0
; he probably deserves more credit than me. Madskillz will be making the TI-83+ version, though I might help a tiny bit on parts. I don't have much experience with TI-83+ series calculators and don't know much about them, so I'm not sure how MLC for the TI-83+ is going to work out. I'm going to be making MLC for 68K calculators by myself though, but I'd be glad to have somebody help me. For the 68K version, I'm going to try to make it so that MLC programs can be ran like this:
mlc(
program name
,
some sort of mode to run the program
)
So, for example, somebody could do:
mlc("myprog",1)
on the home screen or in a program to run the program "myprog" without running the MLC program and then selecting the program the user wants to run from a list.
Also, on an unrelated note, I don't have any school tomarrow, which is why I'm posting today. w000000000000t!
Logged
bfr's website -
http://bfr.tifreakware.net
elfprince13
Guest
MLC - For the TI-83+
«
Reply #48 on:
September 20, 2006, 02:17:00 pm »
@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.
Logged
DJ Omnimaga
Clacualters are teh gr33t
CoT Emeritus
LV15
Omnimagician (Next: --)
Posts: 55943
Rating: +3154/-232
CodeWalrus founder & retired Omnimaga founder
MLC - For the TI-83+
«
Reply #49 on:
September 21, 2006, 03:29:00 am »
I wonder, as this program is now a co revsoft-Omnimaga production and was partially made by eps ppl should this be copyrighted under all 3?
Like
Logged
bfr
LV8
Addict (Next: 1000)
Posts: 819
Rating: +4/-0
MLC - For the TI-83+
«
Reply #50 on:
September 21, 2006, 04:54:00 am »
I guess...although it could also be
Logged
bfr's website -
http://bfr.tifreakware.net
elfprince13
Guest
MLC - For the TI-83+
«
Reply #51 on:
September 21, 2006, 11:46:00 am »
heehee, that would be wierd...do it by the people who've worked on it
Logged
bfr
LV8
Addict (Next: 1000)
Posts: 819
Rating: +4/-0
MLC - For the TI-83+
«
Reply #52 on:
September 21, 2006, 01:35:00 pm »
Yeah. Also...
EDIT I'm posting from a cell phone which won't let me type up my whole post
Logged
bfr's website -
http://bfr.tifreakware.net
elfprince13
Guest
MLC - For the TI-83+
«
Reply #53 on:
September 21, 2006, 01:37:00 pm »
ok
Logged
bfr
LV8
Addict (Next: 1000)
Posts: 819
Rating: +4/-0
MLC - For the TI-83+
«
Reply #54 on:
September 21, 2006, 03:13:00 pm »
Here's pretty much what the rest of my post was:
Also, if I need help parsing the code, I'll remember to come to you
. I've also made some progress on MLC 68K, but I've encountered a problem. In the variable allocation table entries of text files, there is a pointer to its actual data, I think. But, I'm having trouble figuring out where that pointer is and what the address is it points too. An alternative is to store MLC programs in a custom file type, and then I would have to program an editor for the MLC code to be typed in. But, I don't exactly feel like making a whole IDE for MLC, but unless I figure out where that pointer is and where it points to, I might have to make my own IDE. Actually, there is another alternative, which is to edit text like this:
mlc("myprog",2,"CODE HERE")
The "2" would stand for "write data" and "1" would be to "read" or run a program. To make things clearer, the following would edit "myprog":
mlc("myprog",2,"MLC: #FNCT MAIN FEND")
and the following would run "myprog":
mlc("myprog",1)
I want to avoid doing that though because it wouldn't be very user-friendly.
Logged
bfr's website -
http://bfr.tifreakware.net
Liazon
Guest
MLC - For the TI-83+
«
Reply #55 on:
September 22, 2006, 10:42:00 am »
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
Write a program to find unconverted MLC programs and then convert the MLC programs made with the basic editor into their own type. Perhaps like necro said, convert to pure hex and a custom type, then unconvert when someone wants to edit. Or perhaps just make an unconverted copy.
Logged
bfr
LV8
Addict (Next: 1000)
Posts: 819
Rating: +4/-0
MLC - For the TI-83+
«
Reply #56 on:
September 22, 2006, 01:13:00 pm »
I responding in the MLC 68k topic, because it was about MLC 68k
.
Presenting...the (unfinished) MLC website:
http://mlc.phpnet.us/index.php
Logged
bfr's website -
http://bfr.tifreakware.net
Dragon__lance
Guest
MLC - For the TI-83+
«
Reply #57 on:
September 23, 2006, 07:54:00 am »
So how's the 83+ version coming?
Logged
bfr
LV8
Addict (Next: 1000)
Posts: 819
Rating: +4/-0
MLC - For the TI-83+
«
Reply #58 on:
September 23, 2006, 02:12:00 pm »
btw now that the MLC website is set up, it should *usually* be up-to-date on the latest progress. For example, if you would want to find out the latest progress on MLC TI-83+, then you would go to
http://mlc.phpnet.us/mlc83plus.php
. But, I don't even know the latest progress of MLC TI-83+, so it doesn't say on that page. You'll have to ask Madskillz.
*bfr pokes Madskillz*
Logged
bfr's website -
http://bfr.tifreakware.net
DJ Omnimaga
Clacualters are teh gr33t
CoT Emeritus
LV15
Omnimagician (Next: --)
Posts: 55943
Rating: +3154/-232
CodeWalrus founder & retired Omnimaga founder
MLC - For the TI-83+
«
Reply #59 on:
September 23, 2006, 04:15:00 pm »
i think progress should still be announced as well here so we know whats new and all and the downloads and release be posted on the mlc website regulary
Logged
Print
Pages:
1
2
3
[
4
]
5
6
...
9
Go Up
« previous
next »
Omnimaga
»
Forum
»
Calculator Community
»
Other Calc-Related Projects and Ideas
»
TI Z80
»
MLC - For the TI-83+