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

Pages: 1 ... 97 98 [99] 100 101 ... 194
1471
Casio Calculators / Re: Casio Prizm documentation
« on: December 20, 2010, 12:08:04 am »
Seriously, color on a calc is an amazing idea that should have been done already. What are the dimensions of the screen, though?

216x384.

 BTW: Color has already been done before. Two byte colors have not.

Was there any color calculator that had more than 4 colors?

1472
Casio Calculators / Re: Casio Prizm documentation
« on: December 19, 2010, 11:59:30 pm »
-One day later: Starcraft Prizm arrives. ;D

DJ, no truer words spoken! ;D

Even if not, porting S.A.D. to color is something that someone would have my permission to do.

1473
Correlation / Re: Request for a Java Programmer
« on: December 19, 2010, 09:17:26 pm »
the program is attached, along with the source.

It works!  I'll let you know if I run into any trouble, though I'm not finding any problems yet! ;D

1474
Casio Calculators / Re: Casio Prizm documentation
« on: December 19, 2010, 08:00:59 pm »
Anyone know the processor speed?

1475
Computer Usage and Setup Help / Re: How to Use Mono
« on: December 18, 2010, 04:42:15 pm »
The Mono website does not do a good job of explaining how I can use Mono to run a VB.net application on Macintosh and Linux.  Can anyone enlighten me?
I never used Visual Basic so it's hard for me to see what's wrong <a href="http://www.mono-project.com/VisualBasic">with explanation</a>. Perhaps you can explain what you tried to do and what happened?

I've never used Mono before, so I don't even know how to start.

1476
Computer Usage and Setup Help / How to Use Mono
« on: December 18, 2010, 04:07:40 pm »
The Mono website does not do a good job of explaining how I can use Mono to run a VB.net application on Macintosh and Linux.  Can anyone enlighten me?

1477
Correlation / Re: Request for a Java Programmer
« on: December 18, 2010, 12:22:12 pm »
* king graphmastur declares omnimaga should now be referenced as "GAMANIOM"
anyway, I don't full understand thr output format. Is it just a .png ir .gif or what?

If you're talking about the output from the example I gave Nemo, it's sprite data.  A monochrome bitmap is drawn "backwards," and has a lot of unnecessary 0s in it, so Nemo's program would adjust these to make the bitmap "calculator friendly."

1478
Correlation / Re: Request for a Java Programmer
« on: December 18, 2010, 11:40:41 am »
Nemo, here's some test data, something I would expect someone to copy and paste in.

But first, I forgot two things.  First of all, for an 8-pixel wide font, after the string is turned around, every 1st-6th character should be skipped (1st through 4th for 16 wide).  That was my mistake.  The other thing is, even though the text is turned backwards, it's done in pairs--look carefully at the following example:    OMNIMAGA becomes GAMANIOM.

For an 8-pixel-wide font:  FA000000FA000000EA000000EA000000DD000000DD000000CA000000CA000000.  The output should be CACADDDDEAEAFAFA.

For a 16-pixel-wide font: 1122000023340000344500004556000056670000.  The output should be 67565645453434232211

1479
Correlation / Re: Request for a Java Programmer
« on: December 17, 2010, 09:51:39 pm »
i think i'll stick with the first.. lol. do you have any test data for the first i can use?

Not yet, but I'll work on some.

In the meantime, if there's any other takers for option #2, remember that Correlation isn't coming for a month
So basically like a m by n grid that they can do the font, and assign that to a letter or something?

Yeah, essentially.  (Although in the file format, I forgot to mention the graphical data) The monochrome bitmap is created 8 or 16 pixels wide.  The height of the bitmap is the height of a character, multiplied by the total number of characters.  The minimum and maximum values assign these characters to letters--for instance, with a minimum of 65, the letter "A" will be assigned to the first character in the font.

1480
Miscellaneous / Re: Another November Night
« on: December 17, 2010, 08:08:50 pm »
Raylin, that story rocks

1481
Correlation / Re: Request for a Java Programmer
« on: December 17, 2010, 08:06:19 pm »
i think i'll stick with the first.. lol. do you have any test data for the first i can use?

Not yet, but I'll work on some.

In the meantime, if there's any other takers for option #2, remember that Correlation isn't coming for a month

1482
Correlation / Re: Request for a Java Programmer
« on: December 17, 2010, 07:55:51 pm »
ohh... i just finished number one... i don't anticipate #2 being very hard though.

It's not hard.  It's just that #1 is easier 0_0

Anyways, in case #2 works for you, feel free to do a command prompt or a GUI.

The user selects a monochrome .bmp file to select.  He also specifies the height (from 1 to 16), the width (from 1 to 16), the minimum value (from 0 to 255), the maximum value (from 0 to 255, cannot be less than minimum value), and the program name, which must be EXACTLY 8 characters.

I've attached a sample compiled font, though I don't have the original .bmp with me.

The file format: (Let me know if you have questions)
A star means the ASCII value of the character to be written to the file.
Quotes is a string to be written to the file.
For a double star, convert the two-byte value to little edian, and then write the value to the file

"**TI83F*"
*26
*10
*0
"Ti-83+ Font.  Used by Correlation.        "
** The size of the entire file, minus 57

----------------- (Ignore these dashes)


*13
*0
** The size of the .8xp program
*5
Eight-Character Program Name
*1
*0
** The size of the .8xp program
** The size of the .8xp program (This marks the beginning of the Ti-83+ program)
*User-Specified Width
*User-Specified Height
*User-Specified Minimum Value
*User-Specified Maximum Value
*255
*0       (This marks the end of the Ti-83+ program.)
**Check-sum (Take the sum of all bytes following the -------------, use AND %1111111111111111)

1483
ASM / Re: F**king stacks! How do they work?
« on: December 17, 2010, 07:48:28 pm »
But if you mess with IY, you can do a ld IY, Flags, right? ???

That's right.  But one has to remember to do that.

The TI-83+ has some custom flags available for ASM programmers to use.  I make use of these flags in S.A.D., but sometimes I would forget to use ld IY, flags after drawing sprites.  Needless to say, I got some very wacky results, because IY pointed to the wrong spot.

1484
Correlation / Re: Request for a Java Programmer
« on: December 17, 2010, 07:12:29 pm »
can i have some test data / expected output?

Okay, eager beaver! ;D  If it's option number #2, you're hired (and thanks!).  But before I can give you the data, I just need to make sure that it's #2 that you're wanting to do.

1485
Correlation / Re: Request for a Java Programmer
« on: December 17, 2010, 07:02:26 pm »
Ah ok, so it's the font editor? That's what I was wondering.

I'm sorry if I sound confusing :( Fonts are created and edited using paint programs.  The programs are both used for compiling, not for editing.

Pages: 1 ... 97 98 [99] 100 101 ... 194