Module:Keyboard vis: Difference between revisions

From Xenharmonic Wiki
Jump to navigation Jump to search
ArrowHead294 (talk | contribs)
mNo edit summary
Tristanbay (talk | contribs)
fixed resizing
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
local yesno = require("Module:Yesno")
local p = {}
local p = {}


local CORNER_TL = ''
local END_L = '[[File:Keyboard_vis_end_left.png|20px]]'
local CORNER_TR = ''
local END_R = '[[File:Keyboard_vis_end_right.png|20px]]'
local CORNER_BL = '└'
local BORDER_BLACK_KEY = '[[File:Keyboard_vis_border_black_key.png|20px]]'
local CORNER_BR = '┘'
local BORDER_WHITE_KEY = '[[File:Keyboard_vis_border_white_key.png|20px]]'
local BORDER_BLACK_KEY_TOP = '╥'
local BORDER_WHITE_KEY_TOP = '┬'
local BORDER_KEY_BOTTOM = '┴'
local BORDER_BLACK_KEY_SIDE = ''
local BORDER_WHITE_KEY_SIDE = ''


-- Produces a small keyboard visualization
-- Produces a small keyboard visualization
-- Likely to display correctly on most devices
-- Likely to display correctly on most devices
function p.vis_small(step_pattern, debug_mode)
function p.vis_small(step_pattern)
local step_pattern = step_pattern or "LLLsLLs"
local step_pattern = step_pattern or "LLLsLLs"
local debugg = yesno(debug_mode)
local line_1 = CORNER_TL
local result = END_L
local line_2 = BORDER_WHITE_KEY_SIDE
local line_3 = BORDER_WHITE_KEY_SIDE
local line_4 = CORNER_BL
for i = 1, #step_pattern do
for i = 1, #step_pattern do
local current_step = step_pattern:sub(i,i)
local current_step = step_pattern:sub(i,i)
if current_step == "L" then
if current_step == "L" then
line_1 = line_1 .. BORDER_BLACK_KEY_TOP
result = result .. BORDER_BLACK_KEY
line_2 = line_2 .. BORDER_BLACK_KEY_SIDE
line_3 = line_3 .. BORDER_WHITE_KEY_SIDE
line_4 = line_4 .. BORDER_KEY_BOTTOM
elseif current_step == "s" then
elseif current_step == "s" then
line_1 = line_1 .. BORDER_WHITE_KEY_TOP
result = result .. BORDER_WHITE_KEY
line_2 = line_2 .. BORDER_WHITE_KEY_SIDE
line_3 = line_3 .. BORDER_WHITE_KEY_SIDE
line_4 = line_4 .. BORDER_KEY_BOTTOM
end
end
end
end
line_1 = line_1 .. CORNER_TR
result = result .. END_R
line_2 = line_2 .. BORDER_WHITE_KEY_SIDE
line_3 = line_3 .. BORDER_WHITE_KEY_SIDE
line_4 = line_4 .. CORNER_BR
local out_str = (debugg == true and '&lt;pre style=&quot;' or '<pre style="')
return result
.. 'background-color: white; '
.. 'line-height: 1; '
.. 'font-family: Courier New, monospace; '
.. 'font-size: 1em; '
.. 'padding: 0.1em; '
.. 'margin: 0.1em;'
.. (debugg == true and '&quot;&gt;' or '">')
.. string.format('\n%s\n%s\n%s\n%s\n', line_1, line_2, line_3, line_4)
.. (debugg == true and '&lt;/pre&gt;' or '</pre>')
return out_str
end
end


return p
return p

Latest revision as of 04:41, 5 December 2025

Module documentation[view] [edit] [history] [purge]
This module has a corresponding template that is currently missing or does not use this module. (edit template)

This module displays a Halberstadt-like keyboard layout for a given MOS pattern, assuming a 2:1 step ratio.

Introspection summary for Module:Keyboard vis 
Functions provided (1)
Line Function Params
10 vis_small (step_pattern)
Lua modules required (0)
Variable Module Functions used

No function descriptions were provided. The Lua code may have further information.


local p = {}

local END_L				= '[[File:Keyboard_vis_end_left.png|20px]]'
local END_R				= '[[File:Keyboard_vis_end_right.png|20px]]'
local BORDER_BLACK_KEY	= '[[File:Keyboard_vis_border_black_key.png|20px]]'
local BORDER_WHITE_KEY	= '[[File:Keyboard_vis_border_white_key.png|20px]]'

-- Produces a small keyboard visualization
-- Likely to display correctly on most devices
function p.vis_small(step_pattern)
	local step_pattern = step_pattern or "LLLsLLs"
	
	local result = END_L
	
	for i = 1, #step_pattern do
		local current_step = step_pattern:sub(i,i)
		if current_step == "L" then
			result = result .. BORDER_BLACK_KEY
		elseif current_step == "s" then
			result = result .. BORDER_WHITE_KEY
		end
	end
	result = result .. END_R
	
	return result
end

return p