Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix build #335

Merged
merged 1 commit into from
Aug 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/bundle/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4548,11 +4548,11 @@ const bundleFileBase = (name, importedFiles, mixins, fetcher) => {
}
if (fileStack.length > 1)
fileStack.push((0, lua_require_1.generateLuaRequire)());
return fileStack.reverse().join('\n\n');
return fileStack.reverse().map(remove_comments_1.removeComments).join('\n\n');
};
exports.bundleFileBase = bundleFileBase;
const bundleFile = (name, sourcePath, mixins) => {
return (0, remove_comments_1.removeComments)((0, exports.bundleFileBase)(name, exports.files, mixins, (fileName) => fs_1.default.readFileSync(path_1.default.join(sourcePath, fileName)).toString()));
return (0, exports.bundleFileBase)(name, exports.files, mixins, (fileName) => fs_1.default.readFileSync(path_1.default.join(sourcePath, fileName)).toString());
};
exports.bundleFile = bundleFile;

Expand Down
5 changes: 3 additions & 2 deletions .github/actions/bundle/src/bundle.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { bundleFileBase, ImportedFiles, importFileBase } from './bundle'
import { generateLuaRequire } from './lua-require'
import { removeComments } from './remove-comments'

describe('importFile', () => {
it('files can be imported', () => {
Expand Down Expand Up @@ -40,7 +41,7 @@ describe('bundle', () => {
const bundle = bundleFileBase('a.lua', {}, [], fetcher)
expect(bundle).toBe(
[
generateLuaRequire(),
removeComments(generateLuaRequire()),
'',
'__imports["b"] = function()',
" local b = require('b')",
Expand Down Expand Up @@ -70,7 +71,7 @@ describe('bundle', () => {
const bundle = bundleFileBase('mixin.lua', {}, ['mixin.FCMControl', 'mixin.FCMString'], fetcher)
expect(bundle).toBe(
[
generateLuaRequire(),
removeComments(generateLuaRequire()),
'',
'__imports["mixin.FCMControl"] = function()',
' return {}',
Expand Down
8 changes: 3 additions & 5 deletions .github/actions/bundle/src/bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,11 @@ export const bundleFileBase = (
}

if (fileStack.length > 1) fileStack.push(generateLuaRequire())
return fileStack.reverse().join('\n\n')
return fileStack.reverse().map(removeComments).join('\n\n')
}

export const bundleFile = (name: string, sourcePath: string, mixins: string[]): string => {
return removeComments(
bundleFileBase(name, files, mixins, (fileName: string) =>
fs.readFileSync(path.join(sourcePath, fileName)).toString()
)
return bundleFileBase(name, files, mixins, (fileName: string) =>
fs.readFileSync(path.join(sourcePath, fileName)).toString()
)
}
82 changes: 82 additions & 0 deletions .github/actions/bundle/src/remove-comments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,88 @@ const tests: [string, string][] = [
return string.gsub(feature, "_", " ")
end`,
],
[
`

--[[
$module Note Entry
]] --
local note_entry = {}

--[[
% get_music_region
Returns an intance of \`FCMusicRegion\` that corresponds to the metric location of the input note entry.
@ entry (FCNoteEntry)
: (FCMusicRegion)
]]
function note_entry.get_music_region(entry)
local exp_region = finale.FCMusicRegion()
exp_region:SetCurrentSelection() -- called to match the selected IU list (e.g., if using Staff Sets)
exp_region.StartStaff = entry.Staff
exp_region.EndStaff = entry.Staff
exp_region.StartMeasure = entry.Measure
exp_region.EndMeasure = entry.Measure
exp_region.StartMeasurePos = entry.MeasurePos
exp_region.EndMeasurePos = entry.MeasurePos
return exp_region
end

-- entry_metrics can be omitted, in which case they are constructed and released here
-- return entry_metrics, loaded_here
local use_or_get_passed_in_entry_metrics = function(entry, entry_metrics)
if entry_metrics then
return entry_metrics, false
end
entry_metrics = finale.FCEntryMetrics()
if entry_metrics:Load(entry) then
return entry_metrics, true
end
return nil, false
end

--[[
% get_evpu_notehead_height
Returns the calculated height of the notehead rectangle.
@ entry (FCNoteEntry)
: (number) the EVPU height
]]
function note_entry.get_evpu_notehead_height(entry)
local highest_note = entry:CalcHighestNote(nil)
local lowest_note = entry:CalcLowestNote(nil)
local evpu_height = (2 + highest_note:CalcStaffPosition() - lowest_note:CalcStaffPosition()) * 12 -- 12 evpu per staff step; add 2 staff steps to accommodate for notehead height at top and bottom
return evpu_height
end`,
`

local note_entry = {}
function note_entry.get_music_region(entry)
local exp_region = finale.FCMusicRegion()
exp_region:SetCurrentSelection()
exp_region.StartStaff = entry.Staff
exp_region.EndStaff = entry.Staff
exp_region.StartMeasure = entry.Measure
exp_region.EndMeasure = entry.Measure
exp_region.StartMeasurePos = entry.MeasurePos
exp_region.EndMeasurePos = entry.MeasurePos
return exp_region
end
local use_or_get_passed_in_entry_metrics = function(entry, entry_metrics)
if entry_metrics then
return entry_metrics, false
end
entry_metrics = finale.FCEntryMetrics()
if entry_metrics:Load(entry) then
return entry_metrics, true
end
return nil, false
end
function note_entry.get_evpu_notehead_height(entry)
local highest_note = entry:CalcHighestNote(nil)
local lowest_note = entry:CalcLowestNote(nil)
local evpu_height = (2 + highest_note:CalcStaffPosition() - lowest_note:CalcStaffPosition()) * 12
return evpu_height
end`,
],
]

it.each(tests)(`removeComments(%p)`, (input, expected) => {
Expand Down