Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Xeda112358

Pages: 1 ... 82 83 [84] 85 86 ... 317
1246
Grammer / Re: Grammer 2-The APP
« on: January 11, 2013, 12:30:44 am »
You can do that, that won't be a problem. I just mean that by itself the degree token isn't a function. I just marked it as a token that shouldn't be parsed as a function, but any commands like Text(, Disp or [ that use it as a modifier will recognise it.

1247
TI Z80 / Re: FileSyst
« on: January 11, 2013, 12:28:35 am »
Okay, so I added in file extensions and using / for filepaths. It as actually a lot easier than I thought it would be to convert to using file extensions. I also added in the .DOC7 to open up DocDE7 files and I removed AFA() and RFA() as they are no longer needed.

I think I should probably mention that in the screenie running prgmGUI, prgmGUI keeps its subprograms archived. It creates a folder in the main directory called GUI, creates OS shortcuts there, then runs them when it needs to using OPEN(). But what is even cooler is that GUI recognises hidden files or folders and won't display them in the menus. That is why you don't see its folder-- it is marked as hidden using the HIDE() command.

1248
TI Z80 / Re: FileSyst
« on: January 10, 2013, 03:58:09 pm »
Thanks :) And since FileSyst is going to be used in at least three projects (LinuxOS, ScopeOS, and LSDOS), all of which will have shell features, that should be greatly useful. Plus, as it is, it isn't easy to show the user what file associations there are. However, if it is part of the file name as a file extension, users will be able to clearly see what kind of file they are opening.

1249
TI Z80 / Re: MenuKey
« on: January 10, 2013, 03:50:07 pm »
That would be rather cool o.o And yeah, that is all I remember Omnicalc having, I'm not sure which feature DrDnar is referring to .__.

1250
TI Z80 / Re: FileSyst
« on: January 10, 2013, 03:44:26 pm »
I figured that I would ask for input on the following changes to be made to FileSyst:

-Using "/" instead of ":" for folder paths
-Getting rid of the File Association field and just using file extensions. For example, DonkeyKong.ION

Do these sound like good ideas?

1251
BatLib / Re: BatLib
« on: January 10, 2013, 03:28:32 pm »
I have a list of bugs and whatnot that I've been working on this morning. I have also been optimising some of the routines to add room in the code. So far I have modified 7 routines saving 79 bytes :D (I now have about 87 bytes of coding space available :P)

I figured I would mention that I was still working on the next update. Among the bug fixes, I fixed an issue with the DelVar command for a special case and TokSprite just needed a single bit toggled (the documentation said you needed an optional argument to be 1 to draw to pixel coords (0 to draw to aligned coordinates), like HexSprite, but instead it was the other way around because I typed "z" instead of "nz" >.>)

1252
TI Z80 / Re: MenuKey
« on: January 10, 2013, 03:21:22 pm »
I wondered, are you using a getCSC hook or a getKey hook ? In any case, how are you testing the ON key ?
getCSC hook is what I am using. To test the ON key:
Code: [Select]
     in a,(4)
     and 8
     ret nz        ;means ON is not being pressed
<<ON is being pressed, so do stuff>>

1253
TI Z80 / Re: [Contest] Illusiat 11 Grammer Port
« on: January 10, 2013, 10:31:24 am »
It worries me that Grammer isn't working for you .__. The chances that it was corrupted when sending to your calc are pretty small, but I've tested the released version several times and I didn't get any issues. I tested for the problem that was occurring before, too, with archived vars, but that is no longer an issue and it was thoroughly fixed. I really cannot find anything in Grammer that is causing your problems :/

1254
TI Z80 / Re: MenuKey
« on: January 10, 2013, 10:27:53 am »
It basically sets a keyhook that check when you press ON+Vars. Then, it records the menu that you are in and whenever you press ON+number, it selects the menu item by writing to a few bytes of RAM.

1255
Grammer / Re: Grammer 2-The APP
« on: January 10, 2013, 10:16:03 am »
Maybe. That is definitely not a bug present in any recent version.


EDIT: Fixed the issue. What was happening is that I added in an error for unrecognised commands. The parser was getting to the degree symbol and saw it as an unrecognised command and threw ERR:? . I modified it so that the degree symbol is now just ignored as a command, which is essentially what happened in the older versions (I just had an RET for that error, now I actually pass an error).

So luckily it was not anything to do with the archive or RAM or anything like that XD


1256
TI Z80 / MenuKey
« on: January 10, 2013, 12:17:18 am »
A while ago I made a rather neat program that could let you access menu items even after you have left the menu. What do I mean by this? If you set the Strings menu as your menu to access, you can press ON+[number] anywhere in the OS to paste the string. You can use other menus as well, but the Apps and PRGM menu won't work for this. This should help anybody who wants to add a new element of efficiency to their on-calc coding :P

1257
TI-BASIC / Re: Zeda's Hex Codes
« on: January 09, 2013, 11:31:22 pm »
Last night I posted a hex code on TI-BASICDeveloper for making programs run on startup. To use it, pass the name of the program in Ans with a "[" before the name. For example, to run prgmHELLO on startup:
"[HELLO]:Asm(prgmOFFSCRPT

Here is the code:
Code: [Select]
EFD74AFE04C0
EB4E234623
C5E5212C00
09E521CC9D
E7EFF1423803EFC64F
E1EF6A4E
1313
21D59D
012A00EDB0
E1C1
EDB0AF12
FDCB33CE
C9
154F46465343525054
2109807C
EF7B4FC9
83
FDCB09A6
EFD348
EF7E4F
212B80
E7EFF142D8
FDCB08CE
EF9B4A
FDCB088E
AF473CC9
This is my first ever use of OFFSCRPT, so I apologise for anything that I broke D:

1258
Casio Calculators / Re: TI basic converter
« on: January 09, 2013, 10:49:14 pm »
I wish I would take time to really learn C !_! I've been wanting to write something like this for the prizm  and I'm sure I could handle it. I just need to learn a decent language for it D:

1259
TI Z80 / Re: FileSyst
« on: January 09, 2013, 10:08:31 pm »
Oh, I think you missed this post, then :P Or, you can see what I started working on earlier today in this post

EDIT: Oh, I forgot to mention the important part of what I did today. I added in actual icons instead of the two dummy icons, as you can see from the example. GICON() also now looks for more info when it reads a "default" icon. For example, it will check if the file has any file association and then it checks if it is a BASIC or assembly program, returning the appropriate icon.

1260
Grammer / Re: Grammer 2-The APP
« on: January 09, 2013, 11:36:20 am »
That is weird, you said it works on no archived variables? I downloaded the version I posted to make sure it was in fact working and I had no problems. I actually did get an Archive error the first time, but that was because sending the app disables hooks, so I had to run Grammer to reinstall the hooks. I even tested it to make sure the program was on a page boundary and that still caused no problems.

Pages: 1 ... 82 83 [84] 85 86 ... 317