-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Understanding logo bitmap #19
Comments
I think my question could be a bit better defined.
|
Hi dudes, here is how I do :) Using this "lores draw v2" on C64 or on VICE: This program saves a ",SEQ" file that at the end I put on my PC/Mac's filesystem (let's call it "logo"). I do this through "c1541" utility included in VICE:
(where ",s" stands for "SEQ" file).
You will see something similar to this:
Adding some fancy stuff, like this:
you can get this, ready to be copy-pasted into the byte array:
...and so...
|
I'm looking at PETMATE you linked, it should work in place of lores_draw! |
Difference between:
and
The first form accepts numbers from 0 to 255, the second form accepts number from -128 to 127, it's just a different representation of a byte, unsigned or signed. |
Hey @sblendorio that's awesome. Thanks for the information. That might be a good candidate for a wiki page? I really like this project. Great features out of the box. |
You can also load a file from disk and "raw write" it like PetsciiGallery tenant does. Look at writeRawFile function in PetsciiThread class. Please tell us if you create some BBS with this framework, it should be very interesting! |
theoldnet.com:6400. Right now it's just a blatant rip off of what you did but I've brought in some of my own wordpress sources (awesome that you support this). Since what you made supports simultaneous connections I think I could do a sudo-realtime chat system. I made a project for old vintage computers called theoldnet.com which lets you browse archived websites on old browsers. I think I might use the api I already created for that, and offer up some generic text-based web browsing through what you've created. |
Just saw your BBS. Awesome :) I suggest to add a "13" (alias 0D alias CR alias Carriage Return) byte in your LOGOs, in order to add a newline |
thanks! |
Do you have any idea why when using petmate and then the Bash 1 liner you provided some of my characters show up 'weird'. Observe what I designed on the right to what gets output in syncterm on the left This is my logo after running it through your parser
|
The reason for "weird" chars is that the screen is in "lowercase/uppercase" mode (CHR$(14)) instead of "uppercase/graphics" mode (CHR$(142)). In this charset (lowercase/uppercase) the "diagonal characters" are rendered differently. Try running it on C64
and then switch charset with SHIFT + C= keys, and look at those characters |
A pretty noobish question but you have this logo here. Can you tell me how to construct my own logo. I'm not very familiar with java (not at all really).
This looks like an array of byte, you give it an int value and that is driving what, the pixels?
The text was updated successfully, but these errors were encountered: