Upcoming TI-89 Miscellaneous Programs
|
Post updates on your projects here, or give other authors your feedback on
their works in progress.
When posting about an upcoming program of yours, please include a link to
any relevant information (screen shots, etc.) in the URL field.
To have an entry removed, please
Contact Us.
|
|
Reply to this item
|
Re: Upcoming TI-89 Miscellaneous Programs
|
Manoël TRAPIER
(Web Page)
|
I am curently working on an Anti Crash for the TI-89
He's name is Ti-Guard, and i think finish the beta version in the middle on january 2000.
You will find first version only on TI-FR ( http://www.tifr.org )
Godzil
|
|
6 January 2000, 21:29 GMT
|
|
Re: Upcoming TI-89 Miscellaneous Programs
|
EntLord
|
I have been working for a while on a Win32 TI-89 (and I suppose 92(+) as well...) ASM IDE (Integrated Developement Environement), and things are gennerally going very well. I do have a few questions that I would appreciate some assistance on.
1. Is there another assembler besides A68K? (The output of this assembler is written directly to the screen and not to standard output (hard to use from another program))
I have tried messing around a bit with as, gnu's assembler which has cross-assembler support for every processor imaginable (including M68K) has anyone used this successfully and what linker would I need (is there one)?
2. Where exactly can I find some documentation on the TI-89(/92(+)) var-link protocal? (I'd like to be able to send it to the calc easily & automatically from the IDE) If there is another program I might be able to use & include please direct me to the author so I may work out an agreement.
3. I'd also like to know what features everyone out there would like to see. No matter how far fetched or hard-to-do they may seem. If you don't feel like posting them here please e-mail me.
Hopefully this program will be finnished soon and have plenty of cool features, and, like all Yellofish software to date, it will be entirely free!
|
|
26 March 2000, 20:17 GMT
|
|
LOOK! LOOK! @ THIS COOL NEW OS
|
dwos
|
Hey everyone,
I've been working on this awesome os which is made in my own programming language and compiled with a special compiler, though it does show up as a basic program if you try to edit it you immediatly get a system error. Anyways...
Features:
-power on/off
-shutdown to math/graph/etc.
-run/view any file on the calc
-search for any file on the calc and return y/n and type and size
-it has an options to go on to the dwos(mine),tios,msdos(MY STUPID DISK OPERATING SYSTEM,HA!)
-it recognizes all programs,asm,files, etc and sorts them into games,utils., math, science, os ,etc.
-it has a desktop option identical to windows with icons, start menu, time, etc
-has a mouse(under options:KEYBOARD OR MOUSE)
-has about info
-can connect to the TI-Internet(COOL!)from calc
-can network many calcs with a hub
-change the contrast
-use addons such as speakers, mic, mem expander,etc
-multiple backgrounds
-create-a-background
-login history
-login feature,with pass.
-see users, shared calcs, etc.
-play multiplayer games over network
-has multitasking(upto 3 prgms/asm)
-anti-crash
-anti-freeze
-doesnt run prgm if has virus, bugs, etc.
-file encryption/decryption
-special program devloper edition available with compiler(ASM,BASIC,C++),info,etc.
-history optional
-edit programs for optimization(speed wise)
-TI-89,92+
-Will be out next month
Any comments, ideas, etc to
some_freak_guy@mailcity.com
GUESS WHAT?
PROGRAM AVAILABLE MID-APRIL!
HOORAY!
|
|
30 March 2000, 03:02 GMT
|
|
|
|
|
MORE FEATURES...
|
dwos
|
DWOS, Version 5.0.2000
cOOL-
oPtiOnAL LibrARIeS PrOVIDING MoRE fEaTUREs
General-
A useful OS that is a mix of assembly language, basic language, C++, AS LIbraries, and my own language.
Features
-Detects programs in any folder
-has a custom program pulldown menu
-has a cursor
-has icons
-has shutdown feature
-has power off feature
-has keyboard program management
-you can search for any file on the calculator
-you can see file size,available memory
-can see how much percent of the archive needs to be defragmented
-has warnings whenever memory, baterry, etc is in bad condition
-has a run comand(any file)
-has a view command
-you can (un)lock,(un)archive,(un)delete,or rename files
-recycle bin
-backgrounds
-contrast adjustor
-file patching for optimization
-commpession utilities
-login
-passwords
-history
-calculator networking
-ti-internet
-ability to use drivers
-ability to attach peripheral devices
-ability to see time
-about screen to contact me
-an edited version of MS-DOS
-optional windows VS full screen
-Anti-Crash System
-Eliminates address errors, illegal instruction, etc.
-file encyption,decryption
-if there is a missing library or an error a certain program will execute and tell you where the error is
-fun stuff(status line writer, pictures, etc)
-switch users
-certain user privelidges
-settings(boot program, favorites, etc)
-tip of day(for dummies:))
-assembly shell compatible
-multiple programz can be open and closed at once EX:F1-Jezzball,F2-Tetris
-hotkeys
-anti-virus
-virus detection
-virus removal
-on calculator ASM and C compiler
-and much more...
Comments
THE PROGRAM IS READY TO RELEASE MY ONLY PROBLEM IS THAT IT IS TOO BIG FOR TI-OS TO EXECUTE IF SOMEONE WOULD HELP ME BREAK THIS PROGRAM UP INTO SUBPROGRAMS I WILL INCLUDE THEM AS TOP SUBPROGRAMER IN THE INFORMATION IN THE PROGRAM AND DOCUMENTATION. ALSO! I NEED TO KNOW HOW TO MAKE BASIC PROGRAMS THAT WHEN TRIED TO BE EDITED AROUSE AN 'INTERNAL ERROR' MESSAGE! ALSO, HOW DO YOU DEFINE YOUR OWN ERROR MESSAGES IN ASM
ANY HELP IS APPRECIATED THANKS!!!!
AVAILABLE AT TI-CALC.ORG OR TI-FILES.ORG BEGINNING OF JUNE1!!!!!!!!!!!
|
|
13 April 2000, 02:35 GMT
|
|
|
|
|
|
|
|
Re: MORE FEATURES...
|
eric canton
|
First of all, I could help you break up the program into peices. Second, if you like you could add my clock that my team, pi_delta_pi, is making on a later version. Third, to define your own errors, you could do valididity (is that a word?) tests, at least it works in C, or you could, if you want the user to press a certain key, use the code (in C):
-------------- --------------------- ------------------
#define DLG_WIDTH 120
#define DLG_HEIGHT 60
int key = 0;
....
while ((key = ngetchx()) != KEY_ENTER) {
HANDLE dlg = DialogNewSimple (DLG_WIDTH, DLG_HEIGHT);
DialogAddTitle (dlg, "ERROR", BT_OK, BT_NONE);
DialogAddText (dlg, 5, 15, "YOU DIDN'T PRESS ENTER!!");
DialogAddText (dlg, 5, 25, "PRESS ENTER!!");
---------------- ---------------------- ---------------
If, say, you wanted the user to press ENTER.
If this confused you, you could try the long route to understanding by taking TIGCC C Programming lessons on Technoplaza.com, or contact us, and we can either build an error detection program, or explain this code to u in good old English lanuage, remember "English"?, and get on with our lives.
You can contact us at: cantodj@key-net.net, but please include a brief description of what the topic is, because my e-mail is a spam magnet. If you know of a spam bloker that is FREE, please e-mail the address to me, or, prefrerably, post on this page so I can find it.
|
|
6 April 2003, 05:20 GMT
|
|
|
|
|
|
|
|
Re: ANSWERS WANTED!
|
eric canton
|
pi_delta_pi is thinking of making another OS which will have:
-a mouse cursor
-a desktop
-a "Start" menu just like Microsoft's
-an area called "My Calculator" (ha ha)that will be almost identical to "My Computer" that Windows users are familiar with
-a trash bin
-power on/off
-calculator (will be much better than Microsoft's)
-run/edit any program on the calc (even the TIOS)
-graph equations
-draw fuctions
-draw in grayscale
-text editor implementing all of the fonts on the TIOS (small, large, huge)
-a few of my own fonts
-"note to self" section that uses a popup dialog box to remind you of something (project for school, homework, bookreport, other things...)that will come up upon startup and shutdown
-DOS editor thingy(like the MS-DOS on Windows)
-a few surprises...
The surprises wont even be described in the Readme and also wont just be shown to you whenever you use the OS, you'll just have to go into the DOS editor (will be called BAW(black and white)) and try to find them. BAW will be a place where you can "hack" into the source code and run commands defined by the program(dont really see why they call it hacking). I think this will be a very fun place. The commands will be in a language that only I will know, a language that will be made by the OS. Note: This language will only be applicatable in the OS, for its functions will be defined by the OS. Heck, I might just make a whole OS that is BAW, that would be FUN!
I am gonna need TONS of help on this, sure, theres a few people in pi_delta_pi, but I would like many people to join for this.
eric canton
pi_delta_pi
|
|
18 June 2003, 18:38 GMT
|
|
Re: Upcoming TI-89 Miscellaneous Programs
|
ChrisLeiter
|
I am finished developing a program that Encrypts and Decrypts a Picture, with 100% fool proof PassCode Protection. I don't think that anyone can crack this Process, but if you would like a try, email me at my yahoo.com address(see profile). If you would like to try, you need to also write a little note about how you went about doing it. If you can crack this, I will bow down to you like a God, because, I can not even crack it and I wrote the thing! You use a passcode(not word...yet) and choose the encryption type, there are 4 types. I'm going to send whomever emails me, a picture in 89 format
|
|
24 April 2000, 17:41 GMT
|
|
1 2 3 4 5 6
You can change the number of comments per page in Account Preferences.
|