Module:MOS notation

From Xenharmonic Wiki
Jump to navigation Jump to search

Documentation for this module may be created at Module:MOS notation/doc

-- This is a helper module that contains commonly used functions for:
-- - MOS degrees
-- - MOS gamut
local mos = require('Module:MOS')
local rat = require('Module:Rational')
local ord = require('Module:Ordinal')
local utils = require('Module:Utils')
local p = {}

-- ----------------------------------------------------------------------------
-- ------------------------ PARSER FUNCTIONS ----------------------------------
-- ----------------------------------------------------------------------------

-- Parser function
-- Parses notation entered as a string; for example,
-- "CDEFGAB; #; b" becomes an associative array, where:
-- - the key ['Naturals'] has the value "CDEFGAB"; also called "nominals"
-- - the key ['Sharp'] has the value "#"
-- - the key ['Flat'] has the value "b"
-- The string entered is semicolon-separated
-- TODO (low-priority):
-- - Add specific symbols for double-accidentals, namely "x" for two #'s
function p.parse_notation(unparsed)
	
	local parsed = {}
	for entry in string.gmatch(unparsed, '([^;]+)') do
		local trimmed = entry:gsub("^%s*(.-)%s*$", "%1")
		table.insert(parsed, trimmed)		-- Add to array
	end
	
	local notation = { ['Naturals'] = parsed[1], ['Sharp'] = parsed[2], ['Flat'] = parsed[3] }
	if #parsed == 3 then
		return notation
	else
		return nil
	end
end

-- Parser function
-- Parses a step ratio entered as a string "p/q"
function p.parse_step_ratio(unparsed)
	
	local parsed = {}
	for entry in string.gmatch(unparsed, '([^/]+)') do
		local trimmed = entry:gsub("^%s*(.-)%s*$", "%1")
		table.insert(parsed, trimmed)		-- Add to array
	end
	
	if #parsed == 2 then
		return { tonumber(parsed[1]), tonumber(parsed[2]) }
	else
		return nil
	end
end

-- Helper function
-- Simplifies step ratio
function p.simplify_step_ratio(step_ratio_unsimplified)
	
	local kp = step_ratio_unsimplified[1]
	local kq = step_ratio_unsimplified[2]
	local k = utils._gcd(kp, kq)
	local num = kp / k
	local den = kq / k
	
	return { num, den }
end

-- Parser function
-- Parses a UDP entered as a string "up,dp"
-- To avoid potential issues, the "," character is used instead of "|"
function p.parse_udp(step_ratio_unparsed)
	
	local parsed = {}
	for entry in string.gmatch(step_ratio_unparsed, '([^,]+)') do
		local trimmed = entry:gsub("^%s*(.-)%s*$", "%1")
		table.insert(parsed, trimmed)		-- Add to array
	end
	
	if #parsed == 2 then
		return { tonumber(parsed[1]), tonumber(parsed[2]) }
	else
		return nil
	end
end

-- ----------------------------------------------------------------------------
-- ------------------------ DECODER FUNCTIONS ---------------------------------
-- ----------------------------------------------------------------------------

-- Decoder function
-- Decodes a note name given as a quantity of mossteps
-- and chromas (see gamut function) into a name, such as "C#"
-- To be used in conjunction with the genchain function
-- Function is currently not used in any other modules as of time 2023-10-21
function p.decode_note_name(mossteps, chromas, note_symbol, chroma_symbol)
	
	local note_name = note_symbol .. string.rep(chroma_symbol, math.abs(chromas))
	return note_name
end

-- Decoder function
-- Decodes a scale degree given as a quantity of mossteps
-- and a numeric quality (0=perf, 1=maj, -1=min, 2=aug, -2=dim, etc) into a
-- scale degree
-- To be used in conjunction with the degrees function
-- For notation: options include mosstep, mosdegree, and ordinal (not recommended except for maybe 5L 2s)
-- For wording: options include abbreviated or not abbreviated (type in nothing for this option)
-- This function is formerly:
-- function p.mosstep_and_quality_to_degree(mossteps, quality, prefix, notation, wording)
-- Changes:
-- - Encoded mosstep can now be passed directly without passing the mosstep and quality individually.
function p.decode_mosstep_quality(encoded_mosstep, prefix, notation, wording)
	
	-- Get the mossteps and quality from the encoded mosstep
	local mossteps = encoded_mosstep['Mossteps']
	local quality = encoded_mosstep['Quality']
	
	-- Notation options currently include:
	-- - mosstep, for intervals
	-- - mosdegree, for scale degrees
	-- - ordinal, for diatonic-like numbering; can be used for either intervals
	--   or scale degrees
	local prefix = prefix or "mos"				-- Default prefix is mos
	local notation = notation or "mosdegree"	-- Default notation is mosdegree
	local wording = wording or ""				-- Default wording is no abbreviations

	local degree_name = ""
	
	if wording ~= "abbreviated" then
		if notation == "mosstep" then
			degree_name = mossteps .. "-" .. prefix .. "step"
		elseif notation == "mosdegree" then
			degree_name = mossteps .. "-" .. prefix .. "degree"
		elseif notation == "ordinal" then
			-- Add a dash between the prefix and ordinal, if a prefix is given
			if prefix == "" then
				degree_name = ord._ordinal(mossteps + 1)
			else
				degree_name = prefix .. "-" .. ord._ordinal(mossteps + 1)
			end
		end
	
		if quality == 0 then
			degree_name = "Perfect " .. degree_name
		elseif quality == 1 then
			degree_name = "Major " .. degree_name
		elseif quality == 2 then
			degree_name = "Augmented " .. degree_name
		elseif quality > 2 then
			degree_name = (quality - 1) .. "× augmented " .. degree_name
		elseif quality == -1 then
			degree_name = "Minor " .. degree_name
		elseif quality == -2 then
			degree_name = "Diminished " .. degree_name
		elseif quality < -2 then
			degree_name = (math.abs(quality) - 1) .. "× diminished " .. degree_name
		end
	else
		if notation == "mosstep" then
			degree_name = mossteps .. prefix .. "s"
		elseif notation == "mosdegree" then
			degree_name = mossteps .. prefix .. "d"
		elseif notation == "ordinal" then
			-- Add a dash between the prefix and ordinal, if a prefix is given
			if prefix == "" then
				degree_name = ord._ordinal(mossteps + 1)
			else
				degree_name = prefix .. "-" .. ord._ordinal(mossteps + 1)
			end
		end
	
		if quality == 0 then
			degree_name = "P" .. degree_name
		elseif quality == 1 then
			degree_name = "M" .. degree_name
		elseif quality == 2 then
			degree_name = "A" .. degree_name
		elseif quality > 2 then
			degree_name = string.rep("A", quality - 1) .. degree_name
		elseif quality == -1 then
			degree_name = "m" .. degree_name
		elseif quality == -2 then
			degree_name = "d" .. degree_name
		elseif quality < -2 then
			degree_name = string.rep("d", math.abs(quality) - 1) .. degree_name
		end
	end
	
	return degree_name
end

-- ----------------------------------------------------------------------------
-- ------------------------ HELPER FUNCTIONS ----------------------------------
-- ----------------------------------------------------------------------------

-- Helper function
-- Creates a genchain, or specifically, a nominal-accidental chain.
-- This can only work in one direction at a time, so it's necessary to call this twice,
-- once for each direction (going up by the bright generator, or down). One genchain
-- is generated for each period, so this returns an array of arrays.
-- This genchain is agnostic of notation, and only denotes the mossteps needed to reach
-- a note, followed by the number of chromas. For example, F# is reached going up 3
-- mossteps and adding one chroma; Fb is the same except subtracting one chroma.
-- Specific notation is needed to interpret this into note names.
-- Parameters:
-- - input_mos - the mos itself represented as a data structure from Module:MOS
-- - upd_gens_per_period - This is either the value u or d for the UDP of up|dp, and is
--   used to calculate the number of initial notes that don't have accidentals.
--   Note that this is per period, so it's necessary to "simplify" the UDP like a fraction.
-- - chain_length_per_period - the number of notes in the resulting chain. NOTE: if working
--   in terms of "generators stacked after the root", add 1 to that value.
-- - going_up - bool; whether the genchain is going up or down; true for up, false for down
function p.mos_nomacc_chain(input_mos, upd_gens_per_period, chain_length_per_period, going_up)
	-- Default parameters for testing
	--[[
	local input_mos = input_mos or mos.new(5, 2, 2)
	local upd_gens_per_period = upd_gens_per_period or 5
	local chain_length_per_period = chain_length_per_period or 14
	local note_symbols = note_symbols or "CDEFGAB"
	local chroma_symbol = chroma_symbol or "#"
	local going_up = going_up or true
	]]--
	
	-- Get the number of mossteps per period and equave
	local mossteps_per_equave = input_mos.nL + input_mos.ns
	local periods_per_equave = utils._gcd(input_mos.nL, input_mos.ns)
	local mossteps_per_period = mossteps_per_equave / periods_per_equave
	
	--[[
	-- Split the note symbols string into subsets
	-- This is only necessary if the mos is multi-period
	local note_subsets = {}
	for i = 1, periods_per_equave do
		local start_index = (i - 1) * mossteps_per_period + 1
		local stop_index = i * mossteps_per_period
		local substr = string.sub(note_symbols, start_index, stop_index)
		table.insert(note_subsets, substr)
	end
	]]--
	
	-- Create the genchain for each period
	local genchains = {}
	for i = 1, periods_per_equave do
		--local note_names = note_subsets[i]
		
		-- Get the size of the generator in mossteps
		local gen = mos.bright_gen(input_mos)
		local gen_in_mossteps = gen['L'] + gen['s']
		
		-- If the genchain is descending (ie, going_up is false), switch to
		-- using the dark gen in mossteps, which is the period complement
		-- of the bright gen; going up by the dark gen is the same as going
		-- down by the bright gen
		if not going_up then
			gen_in_mossteps = mossteps_per_period - gen_in_mossteps
		end
		
		-- Use this value, with modular arithmteic, as an index to get the note name
		local accumulator = 0
		
		-- Create a genchain that initially starts at the root
		--local root = string.sub(note_names, 1, 1)
		--local genchain = { root }
		local root_offest = (i - 1) * mossteps_per_period		-- To make sure that, across all periods, every note has a unique index
		
		-- Create the genchain
		local genchain = { }
		for j = 1, chain_length_per_period do

			-- Convert the accumulator into an index
			local index = accumulator % mossteps_per_period
			
			-- Add accidentals
			-- This is negative if the genchain is descending
			-- The upd_gens_per_period refers to the value u (or d for descending chains) in
			-- the UDP of up|dp. The first u notes reached by stacking up that many generators from the
			-- root don't have accidentals, but the number of notes that don't have accidentals
			-- is actually u+1, since the root doesn't have accidentals either.
			local accidentals_to_add = 0
			if j > upd_gens_per_period + 1 then
				accidentals_to_add = math.ceil((j - upd_gens_per_period - 1) / mossteps_per_period)
			end
			if not going_up then
				accidentals_to_add = accidentals_to_add * -1
			end
			
			-- Get the final note name
			local note_name = {}
			note_name['Mossteps'] = index + root_offest	-- Mossteps needed to reach a note
			note_name['Chromas'] = accidentals_to_add	-- How many chromas
			
			-- Add the note name
			table.insert(genchain, note_name)
			
			-- Increment the index by the generator
			accumulator = accumulator + gen_in_mossteps
		end
		
		-- Add the genchain
		table.insert(genchains, genchain)
	end
	
	return genchains
end

-- Helper function
-- Produces a chain of scale degrees. What scale degrees are
-- reached by stacking a generator?
-- (EG, major 2nd, augmented 2nd, etc)
-- This function only works one direction at a time, so it's necessary to call
-- it twice, one for each direction.
-- Quality encodes maj/min/aug/perf/dim numerically:
-- -  3 = 2x augmented
-- -  2 = 1x augmented
-- -  1 = major
-- -  0 = perfect (used for generators and root)
-- - -1 = minor
-- - -2 = 1x diminished
-- - -3 = 2x diminished
-- The following name rules are followed, and numeric values described above are used:
-- - If an interval is the period (including the unison and equave), then the quality is perfect.
-- - For all other intervals, there are two sizes of major (large size) and minor (small size).
-- - For bright generators of non-nL-ns mosses, the sizes are perfect and diminished instead.
-- - For dark generators of non-nL-ns mosses, the sizes are augmented and perfect instead.
-- - Generators of nL ns mosses use the terms major and minor instead.
-- - Alterations denote raising a large interval by a chroma, or lowering a small interval by a chroma.
--   Since non-nL-ns mosses have augmented dark gen and diminished bright gen already, alterations
--   for those are 2x-augmented and 2x-diminished intervals; these are encoded accoringly.
-- Params are as follows:
-- - input_mos: the input mos itself
-- - chain_length_per_period: the number of degrees in the resulting chain. 
--   NOTE: if working in terms of "generators stacked after the root", add 1 to that value.
-- - going_up - whether the chain is built on stacking up or down; true for up, false for down
function p.mos_degree_chain(input_mos, chain_length_per_period, going_up)
	-- Default parameters for testing
	--[[
	local input_mos = input_mos or mos.new(5, 2, 2)
	local chain_length_per_period = chain_length_per_period or 10
	local going_up = false
	]]--
	
	-- Get the number of mossteps per period and equave
	local mossteps_per_equave = input_mos.nL + input_mos.ns
	local periods_per_equave = utils._gcd(input_mos.nL, input_mos.ns)
	local mossteps_per_period = mossteps_per_equave / periods_per_equave
	
	-- Get the number of mossteps for the generators
	local bright_gen = mos.bright_gen(input_mos)
	local mossteps_per_bright_gen = bright_gen['L'] + bright_gen['s']
	local mossteps_per_dark_gen = mossteps_per_period - mossteps_per_bright_gen
	
	local degreechain = {}
	for j = 1, periods_per_equave do
		local chain_for_period = {}

		for i = 1, chain_length_per_period do
			
			-- Calculate mossteps
			local mossteps = 0
			if going_up then
				mossteps = (i - 1) * mossteps_per_bright_gen % mossteps_per_period + (j - 1) * mossteps_per_period
			else
				mossteps = (i - 1) * mossteps_per_dark_gen % mossteps_per_period + (j - 1) * mossteps_per_period
			end

			-- Calculate quality
			-- The first two elements in the chain are always perfect
			-- All intervals after that are major (or minor if going down)
			-- After the major intervals are augmented intervals, which starts
			-- with the augmented dark generator, which comes before the
			-- augmented unison. (or minor and dim bright gen if going down)
			-- For nL ns mosses, generators are major and minor instead, so only
			-- the root is perfect
			local quality = 0
			if input_mos.nL ~= input_mos.ns then
				if i == 1 or i == 2 then
					quality = 0
				else
					-- Offsetting i by +1 will make it so the dark generator
					-- before the augmented unison is denoted as augmented,
					-- but lua's start-from-1 indexing offsets it by 1 already.
					quality = math.floor(i / mossteps_per_period) + 1
					if not going_up then
						quality = quality * -1
					end
				end
			else
				if i == 1 then
					quality = 0
				else
					quality = math.floor((i + 1) / mossteps_per_period)
					if not going_up then
						quality = quality * -1
					end
				end
			end
			
			-- Put together the name
			local degree = { ['Mossteps'] = mossteps, ['Quality'] = quality }
			table.insert(chain_for_period, degree)
		end
		table.insert(degreechain, chain_for_period)
	end
	
	return degreechain
end

return p