Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

Thank you for sharing your idea on how to allow Korean text to be used! I have discussed this in the official GB Studio server before, but reading your comment, I realized it is possible!

Unfortunately, there's no way to divide Hangul characters into their individual letters in the software I'm using (Clickteam Fusion). I tried asking the CTF community, but they said such thing most likely doesn't exist. I could however allow the individual letters to be used, but that wouldn't look good. Do you happen to know a way to make it work without having to code in 2000+ characters.

The current Unicode is Korean Completion (KS X 1001), and 2350 characters, which are the most frequently used among pre-combined Korean characters, are carefully selected and one space is allocated for each character.

This was to comply with international standards and for compatibility with other languages or systems. It's also very simple.

However, in the 90s, where memory was limited, it was difficult to put all 2350 characters like this, especially in software such as games.

At this time, what was mainly used at the time was "Combined Hangul".

"Combined Hangul" is a method that focuses on the basic characteristics of Korean that are completed by combining each letter like a Lego block.

The divided words are divided into beginning sound-middle sound-ending sound, and they are combined and output.

In this case, the number of basic characters required for Korean language implementation can be greatly reduced.

Here is an example image.


However, it can be tricky to implement combinatorial Hangul in limited systems like Clickteam Fusion. Below is a document on how to implement the combined Hangul, but since this page is for Korean users, it is difficult to interpret correctly if you do not know Korean.

https://bakyeono.net/post/2013-12-03-clojure-hangul-bitmap-font.html

https://mytears.org/resources/doc/Hangul/HANGUL.TXT

In the case of the Korean complete form (KS X 1001), there is a pre-written list because it is an international standard. These are the 2350 Korean characters listed in the entry on the wiki below. You don't have to come up with all the combinations, just copy and paste. It's a very simple method, but I'm worried about that because it's not good for optimization.

https://namu.wiki/w/%EC%99%84%EC%84%B1%ED%98%95/%ED%95%9C%EA%B8%80%20%EB%AA%A9%E...

(2 edits)

Hi! I found a way to use Korean text that fits inside one 8px row! It will only work in the next version of GB Studio though, since it has variable width (I can fit in more characters). I don't know if it'll be able to use it though, so for now it's just an idea.


The first tile has ㄷ and ㅗ , the second one has ㅐ and ㄴ. I've done the math and I'll need over 230 tiles, but I'll be able to use more in the next update, so it should work.

The main problem is still the converter, I can't convert a hangul block into its individual jamo letters to analyze, at least not for now. The Unicode math method is not available in CTF yet. Still, if I somehow get to split it, I'd need to figure out more complicated stuff.

I can add individual jamo letters right now, it's nothing impressive, but it's a good start, I believe.

(1 edit)

Will the next version of GB Studio mean version 2 beta?

I thought about the Hangul block separation problem.

Korean Unicode can also input only intermediate sounds such as "ㅞ". Of course you can't type endings in this state, but if you use this you will be able to think of a way to get Hangul input from CTF without splitting Hangul blocks. However, handling characters with ending sounds is a problem.

We are going to create a Korean Ascii sprite sheet using "half-combined fonts" as shown in the image attached to the first comment.

In English, only uppercase letters remain and most special characters disappear, but it seems that only the most frequently used midtones can be carefully selected and made.

If successful, I'll share the sprite sheet and the character array.

This way, you don't have to create an algorithm to separate and combine Hangul in GlyphBoy Swap.

This is because the number of completed characters cannot exceed 256 characters, no matter how many.

If you can't separate each "letter" in a Hangul "word", there's also a way to space them one character at a time through spaces as you type.

Oh, if you really want to put spaces, you have to omit them with special characters like "-".

Not a very neat way, but sorry. I can't come up with a good idea anymore.


Sample text: 다람쥐 헌 쳇바퀴에 타고파

When entering GlyphBoy Swap: 다 람 쥐 - 헌 - 쳇 바 퀴 에 - 타 고 파


In extreme cases, if you want to type some words, you may have to use characters other than Korean.

The next version will most likely be 3.0, which is months away.

Are you going to attempt to make a sheet and array? According to toxa, one of the developers of the next version, the variable width won't change the number of available tiles, but there will be fonts, so we'll probably have even more space for characters.

Also, the problem isn't separating words, it's separating characters to their jamo. I don't understand what you mean by ommiting spaces with special characters like "-"; spaces are not the problem.