Skip to content
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

Font is missing the symbols for the buttons #85

Open
Sterophonick opened this issue Aug 7, 2019 · 4 comments
Open

Font is missing the symbols for the buttons #85

Sterophonick opened this issue Aug 7, 2019 · 4 comments

Comments

@Sterophonick
Copy link

The button symbols are missing

Ex: Press (x) to start looks like
Press to start

@x2nie
Copy link

x2nie commented Oct 17, 2020

hi !
I am done to show the button symbols. Currently only Z & X are supported.
image

here is the changes:
x2nie@8e3f35b

@Sterophonick
Copy link
Author

Oh, sweet!

@x2nie
Copy link

x2nie commented Oct 18, 2020

hi @Sterophonick !
now we are completely support the A-to-Z symbols:
image
at here: x2nie@ed19619
know issue: it drops the char substitution outside, so like katakana/japanesse etc. may unpredictable ( I have no sample ).
------------ DEMO FILE --------------- :

pico-8 cartridge // http://www.pico-8.com
version 16
__lua__

ut = '█▒🐱⬇░✽●♥☉웃⌂⬅😐♪🅾◆…➡★⧗⬆ˇ∧❎▤▥'
ab = 'abcdefghijklmnopqrstuvwxyz'

function _init()
    cls(1)
    local i,n,x,y
    local z = 8

    for i=1,#ab do
        n = i - 1
        x = n % z
        y = flr(n / z) 
        print(tostr(sub(ab,i,i)), x*16+1, y*20+1, 8)
        print(tostr(sub(ut,i,i)), x*16+1, y*20+10, 10)
    end
    print(#ab, 100, 100)
    print(#ut, 100, 110)
end

-- EDIT: now, managed chars in grid.

@Sterophonick
Copy link
Author

Wonderful!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants