feat: add termux tts support

This commit is contained in:
JuanZoran 2023-04-02 11:01:37 +08:00
parent 9357574b5c
commit 576f1eb66a
5 changed files with 38 additions and 30 deletions

View File

@ -40,7 +40,6 @@ return function()
vim.notify(debug_message, vim.log.ERROR) vim.notify(debug_message, vim.log.ERROR)
end end
Trans.curl.get(uri, { Trans.curl.get(uri, {
output = zip, output = zip,
callback = handle, callback = handle,
@ -51,7 +50,7 @@ return function()
vim.notify(message, vim.log.levels.INFO) vim.notify(message, vim.log.levels.INFO)
-- INFO : Install tts dependencies -- INFO : Install tts dependencies
if fn.has 'linux' == 0 and fn.has 'mac' == 0 then if Trans.system == 'win' then
os.execute 'cd ./tts && npm install' os.execute 'cd ./tts && npm install'
end end
end end

View File

@ -23,12 +23,8 @@ function M.setup()
for action, key in pairs(M.opts.keymaps) do for action, key in pairs(M.opts.keymaps) do
set('n', key, function() set('n', key, function()
local instance = M.get_active_instance() local instance = M.get_active_instance()
return instance and coroutine.wrap(instance.execute)(instance, action) or key
if instance then -- TODO : Fix remap
coroutine.wrap(instance.execute)(instance, action)
else
return key
end
end) end)
end end
end end

View File

@ -38,13 +38,13 @@ local function check_binary_dependencies()
'sqlite3', 'sqlite3',
} }
if has 'linux' == 1 then binary_dependencies[3] = ({
binary_dependencies[3] = 'festival' win = 'node',
elseif has 'mac' == 1 then mac = 'say',
binary_dependencies[3] = 'say' linux = 'festival',
else termux = 'termux-api-speak',
binary_dependencies[3] = 'node' })[Trans.system]
end
for _, dep in ipairs(binary_dependencies) do for _, dep in ipairs(binary_dependencies) do
if executable(dep) == 1 then if executable(dep) == 1 then

View File

@ -18,18 +18,26 @@ end
---@field width function @Get string display width ---@field width function @Get string display width
---@field play function @Use tts to play string ---@field play function @Use tts to play string
local uname = vim.loop.os_uname().sysname
local system =
uname == 'Darwin' and 'mac' or
uname == 'Windows_NT' and 'win' or
uname == 'Linux' and (vim.fn.executable 'termux-api-start' == 1 and 'termux' or 'linux') or
error 'Unknown System, Please Report Issue'
local sep = vim.loop.os_uname().sysname == 'Windows' and '\\' or '/' local sep = system == 'win' and '\\' or '/'
---@class Trans ---@class Trans
---@field style table @Style module ---@field style table @Style module
---@field cache table<string, TransData> @Cache for translated data object ---@field cache table<string, TransData> @Cache for translated data object
---@field plugin_dir string @Plugin directory ---@field plugin_dir string @Plugin directory
---@field separator string @Path separator ---@field separator string @Path separator
---@field system 'mac'|'win'|'termux'|'linux' @Path separator
local M = metatable('core', { local M = metatable('core', {
cache = {}, cache = {},
style = metatable 'style', style = metatable 'style',
plugin_dir = debug.getinfo(1, 'S').source:sub(2):match('(.-)lua' .. sep .. 'Trans'),
separator = sep, separator = sep,
system = system,
plugin_dir = debug.getinfo(1, 'S').source:sub(2):match('(.-)lua' .. sep .. 'Trans'),
}) })
M.metatable = metatable M.metatable = metatable

View File

@ -1,34 +1,39 @@
local api, fn = vim.api, vim.fn local api, fn = vim.api, vim.fn
--- INFO :Define plugin command --- INFO :Define plugin command
local Trans = require("Trans") local Trans = require 'Trans'
local command = api.nvim_create_user_command local command = api.nvim_create_user_command
command("Translate", function() command('Translate', function()
Trans.translate() Trans.translate()
end, { desc = " Translate cursor word" }) end, { desc = ' Translate cursor word' })
command("TranslateInput", function() command('TranslateInput', function()
Trans.translate({ mode = 'i' }) Trans.translate { mode = 'i' }
end, { desc = " Translate input word" }) end, { desc = ' Translate input word' })
command("TransPlay", function() command('TransPlay', function()
local util = Trans.util local util = Trans.util
local str = util.get_str(vim.fn.mode()) local str = util.get_str(vim.fn.mode())
if str and str ~= "" and util.is_English(str) then if str and str ~= '' and util.is_English(str) then
str:play() str:play()
end end
end, { desc = " Auto play" }) end, { desc = ' Auto play' })
string.width = api.nvim_strwidth string.width = api.nvim_strwidth
local system = Trans.system
local f = local f =
fn.has('linux') == 1 and ([[echo %q | festival --tts]]) system == 'mac' and 'say %q' or
or fn.has('mac') == 1 and ([[say %q]]) system == 'termux' and 'termux-tts-speak %q' or
or 'node' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q' system == 'linux' and 'echo %q | festival --tts' or
'node' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q'
-- 'powershell -Command "Add-Type AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak([Console]::In.ReadToEnd())" | Out-File -Encoding ASCII %q'
-- or 'node' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q'
-- system == 'win' and 'powershell -Command "Add-Type AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak([Console]::In.ReadToEnd())" | Out-File -Encoding ASCII %q'
string.play = function(self) string.play = function(self)
fn.jobstart(f:format(self)) fn.jobstart(f:format(self))
end end