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 - shrear

Pages: 1 ... 7 8 [9] 10 11 ... 14
121
nDoom / Re: nDOOM - Work in progress
« on: February 05, 2011, 06:23:06 am »
TCT_Local_Control_Interrupts(0) ;
tends to cause keys to be "remembered"
and since I see the clock when loading I take it that you use it.

Hope this helps you since ndoom is really great :) :)

122
Ndless / Re: Ndless 2.0 for TI-Nspire Clickpad/Touchpad
« on: February 03, 2011, 12:32:26 pm »
Can anyone define how stable ndless currently is? Since I get requests from classmates to "hack" their calcs. one the one side, after my personal experience ndless in its current form is pretty stable, but I also know that it is only a beta.
So can anyone "tell" me how "responsible" it is to share it with them?
Thx in advance for an answer.

123
TI-Nspire / Re: notepad for the nspire
« on: January 23, 2011, 04:54:59 am »
OK that's strange, could you try with os 2.0 please, since what runs on 2.0 or 2.1 should also run on 1.7...

EDIT: is your ndless binary 115kb or 113kb big?

124
Computer Projects and Ideas / Re: My first C++ Project
« on: January 22, 2011, 12:38:49 pm »
There are some small errors:
power is undeclared (if it is a variable, don't really get your code there)
you can't use, as said by Binder News, the ^ operator like you do.
there is a missing ;
produt isn't product ;)
and there is one place where you mix int and float, this may or may not cause problems.

I wish you Good luck in writing this program.

125
TI-Nspire / Re: notepad for the nspire
« on: January 19, 2011, 03:59:14 pm »
Cool!

An idea that might make multiple names easier: Keep using the nwriter.txt.tns name internally, but a small loop during opening and closing the program copies and renames the program. Opening copies the chosen txt file to nwriter.txt, closing copies nwriter.txt to another txt file.
Thanks for the advice.
Not sure how hard that is in pure c though :P
There is a single problem with it: internally I use a variable called "path" already, since using the "name string" would require, as far as my C goes(that doesn't mean much...) to hard code it every time I use it, witch would not allow any dynamic naming, witch is the opposite of what I want.
But again thanks for trying to help :)

126
TI-Nspire / Re: notepad for the nspire
« on: January 17, 2011, 04:34:04 pm »
Well here is the promised screen record



Ok I'm not good at recording...

127
TI-Nspire / Re: notepad for the nspire
« on: January 16, 2011, 04:59:52 pm »
Ok I think I have it far enough now to call it beta.

to summarise:

-every character of Windows-1252(ansi) is defined and may (if there is no key for it) be written per entering his hex-value while pressing ENTER.
-exeption are control characters, only \t \r \n are defined. (I'm not sure if the others are needed actually)
-you can store up to 900 characters. (if you write more than fits on the screen it's going to look as if he would overwrite the first characters but that doesn't really happen)
-speaking of storing, you can either store it temporary or in a file called "nwriter.txt.tns".
-this file, you can also write on your Pc. Then you have to save it in the same directory as nwriter.tns (hasn't any more to be the root directory)
-by pressing CAT (the key with the book on it) you can invert the color of the screen.

If you write a .txt file on your Pc make sure that your text editor uses \r\n for "enter". (the ones on windows do it "most" of the time)

Tomorrow I will see if my screen recorder still works but for today I'm to tired.

128
TI-Nspire / Re: notepad for the nspire
« on: January 13, 2011, 12:36:56 pm »
Aww, no 1.4 support? I really prefer OS 1.4 myself.
It may go on OS 1.4 but I won't check that ;)

Oh, happy new year :P
thx

129
TI-Nspire / Re: notepad for the nspire
« on: January 12, 2011, 04:15:41 pm »
Version alpha-two:

-added lower-case letters and punctuation ( everything under 0x80 ansi is defined even if there is no possibility yet to write it on calc )
-added carriage return and tab

next thing will be something like alt codes for characters for whom there are no "logical" keys;
,that nwriter.tns and the .txt file will not to have be directly under /Documents to work
and that he doesn't react strange to \n after \r.

I have added also a picture of my calc while running nwriter. ( it's a bit blurry I know...)

130
Ndless / Re: Ndless 2.0 for TI-Nspire Clickpad/Touchpad
« on: January 11, 2011, 08:58:03 am »
there is always a specific version for 1.7, 2.0 and 2.1, they will all be in \calcbin after you compiled ndless

131
TI-Nspire / Re: notepad for the nspire
« on: January 10, 2011, 07:19:47 am »
its normal ansi, if you remove the .tns you can open it with the real notepad or some similar program on your PC

132
TI-Nspire / Re: notepad for the nspire
« on: January 09, 2011, 08:52:09 am »
I think I forgot to say that you may need (for now) to have both files at the root and not in a folder to get them work properly

133
TI-Nspire / Re: notepad for the nspire
« on: January 09, 2011, 05:52:24 am »
Nice, all we need now is a C Compiler ;D
yea :)

134
TI-Nspire / Re: notepad for the nspire
« on: January 09, 2011, 05:47:52 am »
thx ExtendeD

135
TI-Nspire / notepad for the nspire
« on: January 09, 2011, 04:42:28 am »
"Very" long ago I wrote a program in basic with which you could write letters on the graphscreen.
Since I had not to much to do the last week, I ported it to C.

Even with all what I added to the C version there are still some limits for the moment:
-I have just defined the "symbols" for upper-case letters an numbers
-you can only write 53*26 letters

But this you can already:
-deleting the last symbol written
-saving temporary
-saving to a file (for now only to "writer.txt.tns", also writer.tns and the file need to be at the root of your file system (/My Documents) to work as they should)
-reloading from this file (which can as well be written on a Pc, you have only to append a null character and the .tns extension at a regular .txt file)

I will add asap these features:
-code the rest of the characters (lowercase+punctuation)
-saving and reloading from/to different files
-add the possibility to reverse the  screen colour
-make it possible to write more than what fits on one screen
 and to navigate with the arrow keys (or even mouse pointer if it gets accessible)

And if that all goes I may try to add the possibility to format the text a bit, but that could take a while...

So here it is (Source included) what do you think?

Pages: 1 ... 7 8 [9] 10 11 ... 14