summary refs log tree commit diff
path: root/plover_toki_pona/dictionaries/steno.lua
blob: 7a32c10b0c9e4d141c4bc4a4c84ec2206b33ac77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
-- toki pona steno generator
-- TODO:
-- - make fingerspelling syllable-based MAYBE
-- - punctuation?

local dkjson = require("dkjson")
local words = require("words")

local function warn(str)
	io.stderr:write(str .. "\n")
end

local function nop() end

local tp_order = { "S", "P", "K", "L", "M", "H", "W", "N", "R", "A", "I", "E", "O", "U" }

-- takes a table of chords - each chord is just a table where any key defined is a key pressedi n the chord
local function write_tp_outline(outline)
	local out = {}
	for i, chord in ipairs(outline) do
		if i > 1 then table.insert(out, "/") end

		for _, k in ipairs(tp_order) do
			if chord[k] then table.insert(out, k) end
		end
	end

	return table.concat(out)
end

local function read_tp_outline(str)
	local out = {}

	for chord in string.gmatch(str, "[^/]+") do
		local map = {}
		for key in string.gmatch(chord, ".") do map[key] = true end
		table.insert(out, map)
	end

	return out
end

assert(write_tp_outline({{S = true, L = true}}) == "SL")
assert(write_tp_outline({{S = true, P = true, O = true}, {N = true, I = true}}) == "SPO/NI")

local function merge_outline(outline)
	local out = {}

	for i, chord in ipairs(outline) do
		for k in pairs(chord) do out[k] = true end
	end

	return { out }
end

assert(write_tp_outline(merge_outline({{S = true, P = true, O = true}, {N = true, I = true}})) == "SPNIO")

local steno_order = { "S-", "T-", "K-", "P-", "W-", "H-", "R-", "A-", "O-", "*", "-E", "-U", "-F", "-R", "-P", "-B", "-L", "-G", "-T", "-S", "-D", "-Z" }

-- convert a traditional-style steno chord to a string
local function write_chord(chord)
	local out = {}

	local needs_dash = true

	for _, key in ipairs(steno_order) do
		if chord[key] then
			local letter = string.gsub(key, "-", "")
			if string.match("AOEU*", letter) then needs_dash = false end

			if string.match(key, "^-") and needs_dash then
				table.insert(out, "-")
				needs_dash = false
			end

			table.insert(out, letter)
		end
	end

	return table.concat(out)
end

local function write_outline(outline)
	local out = {}

	for _, chord in ipairs(outline) do
		table.insert(out, write_chord(chord))
	end

	return table.concat(out, "/")
end

assert(write_outline({{["P-"] = 1, ["O-"] = 1, ["-T"] = 1}}) == "POT")
assert(write_outline({{["-E"] = 1}}) == "E")
assert(write_outline({{["T-"] = 1, ["-T"] = 1}}) == "T-T")
assert(write_outline({{["T-"] = 1}, {["T-"] = 1}}) == "T/T")

local tp_steno_map = {
	S = "S-", P = "T-", K = "P-", L = "H-", M = "*",
	H = "A-", W = "O-", N = "-E", R = "-U",
	A = "-F", I = "-P", E = "-L", O = "-T", U = "-D",
}

local function chord_to_steno(chord)
	local out = {}
	for key in pairs(chord) do
		out[tp_steno_map[key]] = true
	end
	return out
end

local function outline_to_steno(outline)
	local out = {}
	for _, chord in ipairs(outline) do
		table.insert(out, chord_to_steno(chord))
	end
	return out
end

assert(write_outline(outline_to_steno({{K = 1, E = 1}, {P = 1, E = 1}, {K = 1, E = 1, N = 1}})) == "P-L/T-L/PEL")

-- ok now we're actually generating the maps for tp words

-- returns iterator of syllables
local function split_word(word)
	local word = string.gsub(word, "(n?)([^aeiou][aeiou])", "%1-%2")
	return string.gmatch(word, "[^-]+")
end

local letter_map = {
	s = "S", t = "SH", p = "P", w = "PH",
	k = "K", j = "KH", l = "L", m = "M",
	n = "MH", a = "A", e = "E", i = "I",
	o = "O", u = "U",
}

local function convert_syllable(s)
	local out = {}
	if string.match(s, "n$") then
		out.N = true
		s = string.gsub(s, "n$", "")
	end

	for i in string.gmatch(s, ".") do
		for k in string.gmatch(letter_map[i], ".") do out[k] = true end
	end

	return out
end

local function word_outline(word)
	local out = {}

	for s in split_word(word) do
		table.insert(out, convert_syllable(s))
	end

	return out
end

local function assert_tp(outline, expected)
	assert(write_tp_outline(outline) == expected, expected .. " " .. write_tp_outline(outline))
end

assert_tp(word_outline("ken"), "KNE")
assert_tp(word_outline("kepeken"), "KE/PE/KNE")
assert_tp(word_outline("linja"), "LNI/KHA")

-- word briefs are single-chord verisons with W added
local function word_brief(word, modifier)
	local out = word_outline(word)

	-- we don't wanna take space with single-syllable briefs
	if #out == 1 then return nil end

	if modifier then table.insert(out, {W = true}) end
	return merge_outline(out)
end

assert_tp(word_brief("linja"), "KLHNAI")
assert_tp(word_brief("lili", true), "LWI")

--
do
	local dictionary = {}

	-- returns whether insertion was successful
	-- you can pass a nil outline to make this a noöp
	local function add_word(outline, word, force)
		-- it's more useful to just pretend the insertion was successful
		if not outline then return true end
		-- we can change this for keymaps later!
		local steno = write_outline(outline_to_steno(outline))
		local steno = write_tp_outline(outline)

		if not force and dictionary[steno] then
			nop(string.format(
				"duplicate: %s = %s, %s",
				steno, dictionary[steno], word
			))
			return false
		else
			dictionary[steno] = word
			return true
		end
	end

	for _, word in ipairs(words) do
		add_word(word_outline(word), word, true)
		if not add_word(word_brief(word, false), word, false) then
			add_word(word_brief(word, true), word, false)
		end

		local partial = ""
		for syl in split_word(word) do
			partial = partial .. syl
			if syl == word then break end
			add_word(word_outline(partial), partial, false)
		end
	end

	local extra_briefs = {
		["KI/KHE/SHE/SNA/SHA/KA/LU"] = "kijetesantakalu",
		["HR"] = "{^.}",
		["HWNR"] = "{^\n^}",
		W = "=undo",
		S = "sina",
		HS = "tawa",
		P = "pi",
		HP = "wile",
		K = "kama",
		HK = "jan",
		L = "li",
		M = "mi",
		HM = "ni",
	}

	for k, v in pairs(extra_briefs) do
		-- the irony of reparsing and unparsing this is not lost on me
		add_word(read_tp_outline(k), v, true)
	end

	for _, upper in ipairs({ false, true }) do
		for letter, keys in pairs(letter_map) do
			if upper then letter = string.upper(letter) end
			letter = "{&" .. letter .. "}"
			keys = keys .. "W" .. (upper and "R" or "")

			add_word(read_tp_outline(keys), letter, true)
		end
	end

	print(dkjson.encode(dictionary))
end

return { write_tp_outline = write_tp_outline, word_outline = word_outline }