ramekin 0.2.0 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78c8f609fa645c1807ac00bf970bf5d05fc78015c185a50d55410a81faa888a4
4
- data.tar.gz: aab9adb5b304bbcedc94aee84ca95ddd4bf70307d5f807fcbca93944c79c109f
3
+ metadata.gz: f859d4c5dc75cc34a8053dcf5d9958aa48a80aea10d58bb44ac130e1b37c9af0
4
+ data.tar.gz: b1f2678cb27b008646ad250346c5345c7bf173749ba119d1b42ca5b8dbd3f1f4
5
5
  SHA512:
6
- metadata.gz: 42986dbf7c0e96bf7e1ecff4552b052cc99fa662f7e648f8aa16e5e5f668e76759b753f563a11a315c530d2d6ef86867a1f7cb0d1080a1a6d7cfdb0a3c8ac908
7
- data.tar.gz: b7e71fecb8146fbd9b2a8391a827db80c95bff25deff7bc15a50619f8d9f8264346894dd4653629cfe36dc905b4b21c0ddf96c3054a4a2e610d5fe11759c11a6
6
+ metadata.gz: 5ac7a907935cdb923dd3007b739b257c89262cbd862fd7b987189487330c3b39c6ae762741c5cd91ffa0b8e5f07455ab40ad90fef6178e773db8db32fb9ecf23
7
+ data.tar.gz: 3ab59a78f14c06923c2f93011567b8fa6a41aa9c5d56ef8121088157b43f7775da6c8c43ebfe497039498348f3583d3c70523e121904922614215c094f410431
data/README.md CHANGED
@@ -10,6 +10,8 @@ Ramekin is a pre-processor for AddMusicK syntax that is in very early developmen
10
10
 
11
11
  Please keep in mind that as alpha software, **I may make breaking changes at any time.** After initial testing is done, I will release 1.0.0, at which point I will make a reasonable commitment to back-compatibility. That time is not yet.
12
12
 
13
+ For a preview of what full Ramekin tracks look like, feel free to check out [the examples repo](https://codeberg.org/jneen/ramekin-examples).
14
+
13
15
  # Installation
14
16
 
15
17
  First, [Install Ruby](https://ruby-lang.org). Windows users can use [RubyInstaller](https://rubyinstaller.org/).
data/lib/ramekin/bends.rb CHANGED
@@ -56,13 +56,15 @@ module Ramekin
56
56
 
57
57
  leftover = total_duration - bend_duration
58
58
 
59
+ return '' unless check_duration!(from, div)
60
+
59
61
  # ensure there is some leftover so we can toggle legato
60
62
  # before the end
61
63
  if leftover < 2
62
64
  adjust = 2 - leftover
63
65
  bend_duration -= adjust
64
66
  leftover += adjust
65
- if bend_duration < 0
67
+ if bend_duration <= 0
66
68
  return error! 'bend duration too small to insert legato-off toggle', el: self
67
69
  end
68
70
  end
@@ -92,6 +94,16 @@ module Ramekin
92
94
  true
93
95
  end
94
96
 
97
+ def check_duration!(note, divisor)
98
+ ticks = note.ticks / divisor
99
+ return true if ticks > 0 && ticks <= 96
100
+
101
+ error! 'bend length too short (must be at least one tick)', el: note if ticks <= 0
102
+ error! 'bend duration too long (max 96 ticks or a half note)', el: note if ticks > 96
103
+
104
+ false
105
+ end
106
+
95
107
  def to_amk(octave, divisor)
96
108
  if massive_special_case?(divisor)
97
109
  return render_massive_special_case(octave, divisor)
@@ -104,34 +116,36 @@ module Ramekin
104
116
  to_note = @notes[i+1]
105
117
 
106
118
  if i == 0
107
- ticks = note.ticks + to_note.ticks
108
119
  out << note.octave_amk(octave)
109
120
  out << note.note_name
110
121
  else
111
- ticks = to_note.ticks
112
122
  out << '^'
113
123
  end
114
124
 
115
- ticks /= divisor
125
+ next unless check_duration!(note, divisor)
116
126
 
117
- # $dd doesn't work properly if the note
118
- # beforehand is more than a half note, so we have to
119
- # split it up
120
- clamped_ticks = [0x60, ticks].min
121
- leftover_ticks = [0, ticks-0x60].max
127
+ ticks = note.ticks
128
+ ticks /= divisor
122
129
 
123
130
  # always use tick count notation here because
124
131
  # amk can insert ties in some cases which will break $dd
125
- out << "=#{clamped_ticks}"
126
- out << dd(note.ticks, to_note)
132
+ out << "=#{ticks}"
133
+ out << dd(ticks, to_note)
127
134
  out << '$f4$01' if @end_legato && i == 0
128
- out << "^=#{leftover_ticks}" if leftover_ticks > 0
129
135
  end
130
136
 
137
+ out << "^#{@notes.last.length_amk(divisor)}" if @notes.last.ticks > 0
131
138
  out.string
132
139
  end
133
140
 
134
141
  def dd(dur, note)
142
+ hex = note.note_hex
143
+
144
+ unless 0x80 <= hex && hex <= 0xC5
145
+ error! 'note out of range (o1c - o6a)', el: note
146
+ return ''
147
+ end
148
+
135
149
  sprintf '$dd$00$%02x$%02x', dur, note.note_hex
136
150
  end
137
151
  end
@@ -177,7 +177,7 @@ module Ramekin
177
177
  else
178
178
  @octave = nil
179
179
  unless @instrument_index.key?(token.value)
180
- error! "undeclared instrument @#{token.value}"
180
+ return error! "undeclared instrument @#{token.value}"
181
181
  end
182
182
 
183
183
  yield "@#{@instrument_index[token.value]}"
@@ -224,6 +224,12 @@ module Ramekin
224
224
  when 'C' then 10
225
225
  end
226
226
 
227
+ if pan > 20
228
+ return error! 'invalid pan (max yL10)'
229
+ elsif pan < 0
230
+ return error! 'invalid pan (max yR10)'
231
+ end
232
+
227
233
  yield "y#{pan}"
228
234
 
229
235
  when :p
@@ -257,9 +263,6 @@ module Ramekin
257
263
  # triplets are handled in NoteAggregator
258
264
  when :lbrace, :rbrace
259
265
  # pass
260
- when :rbrace
261
- yield '}'
262
-
263
266
  else
264
267
  error! "unexpected token type: #{token.type}"
265
268
  end
@@ -272,10 +275,10 @@ module Ramekin
272
275
  if time.nil?
273
276
  "v#{vol}"
274
277
  else
275
- time = time.to_i
278
+ time = time.to_i / @track.meta.divisor
276
279
  time = 255 if time > 255
277
280
  time = 0 if time < 0
278
- sprintf("$E8$%02x$%02x", time, vol)
281
+ sprintf("$e8$%02x$%02x", time, vol)
279
282
  end
280
283
  end
281
284
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ramekin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - jneen
8
8
  bindir: gembin
9
9
  cert_chain: []
10
- date: 2025-03-07 00:00:00.000000000 Z
10
+ date: 2025-03-08 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: strscan