Borealis wrote:Thanks for the info, Olivier.
Strange that modern DPs like the P525 don't have the full not off feature.
No the Half damper position with Poly aftertouch is better :
here my soluce for pianoteq : (Apple Swift )
-----------
import Foundation
import CoreMIDI
class MIDIHandler {
private var client = MIDIClientRef()
private var inputPort = MIDIPortRef()
private var virtualSource = MIDIEndpointRef()
private var keyAcceleration: UInt8 = 0
private var noteOnFull: [(note: UInt8, velocity: UInt8, keyAcceleration: UInt8)] = []
init() {
// Création du client MIDI
MIDIClientCreate("MIDI Poly Aftertouch Converter" as CFString, nil, nil, &client)
// Création d'un port d'entrée
MIDIInputPortCreate(client, "Input Port" as CFString, midiReadCallback, Unmanaged.passUnretained(self).toOpaque(), &inputPort)
// Création d'une source MIDI virtuelle visible pour les autres logiciels
MIDISourceCreate(client, "P525-SMART_release" as CFString, &virtualSource)
}
func findMIDIEndpoint(named name: String) -> MIDIEndpointRef? {
let sourceCount = MIDIGetNumberOfSources()
for i in 0..<sourceCount {
let endpoint = MIDIGetSource(i)
if let endpointName = getMIDIEndpointName(endpoint), endpointName.contains(name) {
return endpoint
}
}
return nil
}
private func getMIDIEndpointName(_ endpoint: MIDIEndpointRef) -> String? {
var name: Unmanaged<CFString>?
MIDIObjectGetStringProperty(endpoint, kMIDIPropertyName, &name)
return name?.takeUnretainedValue() as String?
}
func connectToPSeries() {
guard let source = findMIDIEndpoint(named: "P-Series") else {
print("P-Series MIDI device not found.")
return
}
MIDIPortConnectSource(inputPort, source, nil)
print("Connected to P-Series MIDI device.")
}
private let midiReadCallback: MIDIReadProc = { packetList, refCon, _ in
let handler = Unmanaged<MIDIHandler>.fromOpaque(refCon!).takeUnretainedValue()
let packets = packetList.pointee
var packet = packets.packet
for _ in 0..<packets.numPackets {
// Accès sûr aux données du paquet
let midiMessage = withUnsafeBytes(of: &packet.data) { rawBuffer -> [UInt8] in
let buffer = rawBuffer.bindMemory(to: UInt8.self)
return Array(buffer.prefix(Int(packet.length)))
}
if midiMessage.count >= 3 {
var status = midiMessage[0] & 0xF0
let channel = midiMessage[0] & 0x0F
let note = midiMessage[1]
let value = midiMessage[2]
if status == 0xB0, midiMessage[1] == 19 { // Controller 19
handler.keyAcceleration = value
handler.sendMIDI(message: [0xB0 | channel, 19, value])
} else if status == 0xA0 { // Polyphonic Aftertouch
if value == 18 {
print("Poly Aftertouch (Note: \(note), Channel: \(channel)) | Converting 18 to 5")
handler.sendNoteOff(note: note, channel: channel, value: 5)
print("Converted Note Off (Note: \(note), Velocity: 5)")
} else {
handler.sendNoteOff(note: note, channel: channel, value: value)
}
} else if status == 0x80 { // Note Off
print("Note Off (Note: \(note), Velocity: \(value))")
if value == 64 {
print("___________________")
}
handler.sendMIDI(message: [0x80 | channel, note, value])
} else if status == 0x90 { // Note On
handler.noteOnFull.append((note: note, velocity: value, keyAcceleration: handler.keyAcceleration))
print("NOTE ON FULL: \(handler.noteOnFull.last ?? (note: 0, velocity: 0, keyAcceleration: 0))")
handler.sendMIDI(message: [0x90 | channel, note, value]) // Forward Note On to virtual port
} else {
handler.forwardMessage(midiMessage)
}
}
packet = MIDIPacketNext(&packet).pointee
}
}
private func sendNoteOff(note: UInt8, channel: UInt8, value: UInt8) {
let noteOffMessage: [UInt8] = [0x80 | channel, note, value]
sendMIDI(message: noteOffMessage)
}
private func forwardMessage(_ message: [UInt8]) {
sendMIDI(message: message)
}
private func sendMIDI(message: [UInt8]) {
var packetList = MIDIPacketList()
var packet = MIDIPacketListInit(&packetList)
packet = MIDIPacketListAdd(&packetList, 1024, packet, 0, message.count, message)
// Envoi des données MIDI à la source virtuelle
MIDIReceived(virtualSource, &packetList)
}
}
let handler = MIDIHandler()
print("MIDI Poly Aftertouch to Note Off Converter")
handler.connectToPSeries()
RunLoop.main.run()
-----------------------------
And in Pianoteq :
Choose the new midi P525-SMART-RELEASE midi port
And set the note off velocity curve like this :
Note-Off Velocity = [0, 64, 127; 0, 127, 127]
Last edited by Olivier W (26-12-2024 15:44)