1

(2 replies, posted in Sinclair)

Ah dang, yeah I must've forgotten to attach it. I need to fix the file up a bit, found a small little error that I wanna fix, but it'll be up soon

EDIT: Uploaded the files finally, and edited the link to the new YT upload so as to not have a dead link.

2

(21 replies, posted in Sinclair)

xxl wrote:

awesome piece of music! would you mind sharing a .tap to run on ZX?

See my earlier reply.

MovieMovies1 wrote:

I'm pretty selective about what I release like that nowadays so I'll pass.

3

(2 replies, posted in Sinclair)

Even more Tritone stuff, uploaded to YT because I got a weird false copyright claim on SoundCloud for a completely unrelated piece of music and I didn't wanna bother dealing with it.

Attached zip file contains the source module as well as the converted .asm and compiled .tap files. To get the same result when compiling for yourself you need the linear pitch xm2tritone converter, and you need to specify the clock rate as 3475804 (i.e. "xm2tritone.exe rubicon.xm 3475804" in the commandline).

4

(21 replies, posted in Sinclair)

I think it should be fine to have it dynamically linked for the most part, many people have visual studio runtimes installed, and judging by the filesize I think the original unmodified converter was compiled with dynamic linking. Static linking is definitely gonna make it slightly more portable though, even if the filesize is a good bit larger.

And I do agree, this was nice to get going, and it's been nice to finally make good use of detuning in Tritone without having to manually edit the assembly files!

5

(21 replies, posted in Sinclair)

I'm pretty selective about what I release like that nowadays so I'll pass.

6

(4 replies, posted in Sinclair)

https://soundcloud.com/moviemovies1/jer … k-music-zx

I put the new XM-to-Tritone converter with better detune support through its paces with this. Picked this track specifically because of its usage of finer vibratos and some pitch sliding to really give it a proper spin. Many thanks to utz for writing up the new detune conversion code!

7

(21 replies, posted in Sinclair)

The octave problem is fixed now, but now each E5x step is 25 semitones! So close... Inspecting the source code I think the octave going too high in the older code made the cents value not work properly, so with the octave bug fixed it the detune strength should be left unchanged. I'll try my hand at compiling it myself since it seems like an easy enough fix to make on my own, I'll just have to install Visual Studio first.

EDIT: All fixed up! Works perfectly now. Added a fixed executable along with the source in an attachment. Thank you so much for this, this will be of great use, and hopefully not just for me. The usage information could probably still be edited a bit to add credit to you, as well as add usage info on the new optional clock speed parameter, but I'll save that for another day.

8

(21 replies, posted in Sinclair)

EDIT Upon further testing it seems to not detune properly either. I'll test further

EDIT 2: I see what's happening now, an E5x detune is making things an octave too high as I stated at first, but each detune step is 1/16th instead of 1/8th of a semitone, i.e. an E5C results in +25 cents instead of +50 cents. If the octave-too-high bug and the strength of each detune is changed to 1/8th, I think this would be perfect.

EDIT 3: Attached a module file that could be used to test. Wanted to attach the resulting .tap file as well to show how the detune goes wrong but I can only attach one file and I cannot delete the attachment to replace it with a .zip archive containing both.

original message:
It almost works properly, but every note with an E5x effect is for some reason a whole octave up from what it should be. An E5C effect on a C-4 results in a detune of +1250 cents instead of the expected +50, and even an E58, which should be no change at all, results in notes going up a whole octave. I'm really not sure what would cause this and I don't know programming well enough to go in and fix this myself (I do appreciate that you shared the source code though!)

9

(21 replies, posted in Sinclair)

Unfortunately the executable you shared gives me an error when I try to run it, says it's a 16-bit application for whatever reason and then doesn't do anything. Unsure why it's being identified as a 16-bit application as it definitely is not one. I tried running it inside of DOSBox out of curiosity, but there it just hangs the command prompt indefinitely.

10

(21 replies, posted in Sinclair)

-1 to +⅞ semitones would definitely be the optimal way to go I feel. It does technically introduce some overlap in detuned notes, but that can make it easier to think about how to apply detunes more logically, and the less discrepancies between the source module and the compiled files the better I think. ⅛ steps gives plenty room for working with fine pitch changes, though Tritone can definitely handle 1/16 steps very well with its 12-bit frequency resolution (I discovered it's 12 bits when I checked the .asm music data, each note is made up of 16 bits, but only 12 of those bits are the frequency data. Seems to work the same as the Famicom Disk System's frequency register, was able to hack a copy of Dn-FamiTracker with an appropriate clock frequency to get matching frequency data between it and Tritone)

The custom tuning I was thinking of was moreso a global detune for everything to compensate for the different global pitch of different spectrum models that could possibly be relatively easy to do, but it's not of much importance either way. Per-note detune would be too complicated, especially for XM conversions.

11

(21 replies, posted in Sinclair)

A formula is definitely the more elegant solution, I just thought of a lookup table first for whatever reason (probably my non-programmer brain).

As for how the E5x effect works in the XM format, it's in ⅛ semitone steps, or 12.5 cents, from one semitone lower to ⅞ semitone higher:

E50 = -100 (1 semitone lower)
E51 = -87.5
E52 = -75 
E53 = -62.5
E54 = -50
E55 = -37.5
E56 = -25
E57 = -12.5
E58 = 0
E59 = +12.5
E5A = +25
E5B = +37.5
E5C = +50
E5D = +62.5
E5E = +75
E5F = +87.5 (⅞ semitone higher)

Another thing I've also noticed is that the overall tuning of Tritone is slight off from standard A=440Hz tuning. Clock speed and memory contention both seem to affect just how much, as different models produce different deviations from standard tuning. Using the current xm2tritone's tuning table conversions I recorded a test tone of what should be an A at 440Hz from different models in an emulator:

   48K: -34 cents from A=440
  128K: -11 cents from A=440
+2A/+3: +22 cents from A=440

As can be seen the 48K at 3.5 MHz with contended memory is downtuned the most, where the 3.5469Mhz 128K is a bit higher, while the +2A/+3 is even higher in pitch owing to the memory in use being uncontended. I think it might be neat to perhaps be able to set a custom tuning, to be able to perhaps compensate for this or just for the purposes of achieving alternate tunings, but this is absolutely not a necessity, moreso a curious observation.

12

(21 replies, posted in Sinclair)

It's nice to see that people like this track, I'm very happy with it myself.

I do find myself a bit frustrated with the xm2tritone conversion tool nowadays with how it handles detune. It treats E5x as a direct -8 to +7 to the frequency, which is highly ineffective due to how frequencies are done in Tritone. I've looked at the converted music asm files and each note is stored as a direct frequency write from 000h to 0xFFFh, so it would definitely be possible to rewrite the XM converter to make things correlate to a linear pitch assignment using a lookup table or similar, but I wouldn't be able to do that myself given my lack of programming skills. I do think it'd be a huge benefit though as it'd allow for much more fine detune control without having to dive into the music data file and manually edit the frequencies directly.

13

(21 replies, posted in Sinclair)

I might as well post this here since I remembered I have an account here. First piece of music I made this year as a whole.

https://soundcloud.com/moviemovies1/str … ectrum-48k

Still most comfy with the Tritone engine after all these years.

14

(4 replies, posted in Sinclair)

Oh yeah I did that. Thanks for the nice words.