Search found 294 matches

by oskari
Wed Mar 25, 2015 3:36 pm
Forum: Devs
Topic: Multiple connections between machines
Replies: 4
Views: 6134

Re: Multiple connections between machines

No, it's not possible unless you fake it in the machine view by creating extra hidden machines.
by oskari
Fri Mar 13, 2015 1:01 pm
Forum: Users
Topic: Corona
Replies: 58
Views: 42176

Re: Corona

Thanks, check the asymmetic dist too. I was kind-of surprised at how fun they were to toy with. Maybe someone makes an actual song or so.
by oskari
Tue Mar 10, 2015 5:54 pm
Forum: Users
Topic: Corona
Replies: 58
Views: 42176

Re: Corona

by oskari
Tue Mar 10, 2015 10:17 am
Forum: Users
Topic: Corona
Replies: 58
Views: 42176

Re: Corona

They are not parameters because technically they are buzz attributes. :) I'll try to fix this later but meanwhile check the new (free) update that was just released.
by oskari
Fri Mar 06, 2015 6:14 am
Forum: Devs
Topic: Pattern XP mod
Replies: 352
Views: 327693

Re: Pattern XP mod

You probably tried the wrong version. https://www.visualstudio.com/en-us/prod ... mmunity-vs works on win7.
by oskari
Sat Feb 28, 2015 1:27 pm
Forum: Users
Topic: Corona has been crashing (in both Buzz and Reaper)
Replies: 2
Views: 2457

Re: Corona has been crashing (in both Buzz and Reaper)

Did you add a wave file recently? Try renaming the dir or so.
by oskari
Sat Feb 28, 2015 1:11 pm
Forum: Devs
Topic: Buzz default pattern length
Replies: 10
Views: 9630

Re: Buzz default pattern length

It's stored as a word so the max is 65535 but I suppose I could change it in the editor.
by oskari
Mon Feb 02, 2015 8:03 pm
Forum: Users
Topic: .NET for Linux = Buzz on Linux?
Replies: 22
Views: 15420

Re: .NET for Linux = Buzz on Linux?

That looks like the concurrent queue thing that was introduced in vista, should not be too difficult to add. Not related to WPF.
by oskari
Thu Jan 29, 2015 2:23 pm
Forum: Users
Topic: Wanted: Jeskola AM 3000
Replies: 9
Views: 6020

Re: Wanted: Jeskola AM 3000

I found a version that works but seems to be unfinished: http://jeskola.net/buzz/beta/files/dev/am3000.cpp
by oskari
Wed Dec 24, 2014 4:07 am
Forum: Music
Topic: soundclould ban
Replies: 26
Views: 25839

Re: soundclould ban

Have you tried using the volume control. It just doesn't work.
by oskari
Wed Dec 24, 2014 12:38 am
Forum: Music
Topic: soundclould ban
Replies: 26
Views: 25839

soundclould ban

Soundclould is banned until they make a proper volume control (the rocket science of late 2014!). I recommend posting your songs to other sites until then and possible even after then given how incompetent they seem.
by oskari
Sat Nov 08, 2014 4:51 pm
Forum: Users
Topic: wireless effects
Replies: 20
Views: 10341

Re: wireless effects

It's in MachineControl.xaml.
by oskari
Tue Oct 28, 2014 10:27 pm
Forum: Devs
Topic: Pattern XP mod
Replies: 352
Views: 327693

Re: Pattern XP mod

HMODULE is really a void * and I want MachineInterface.h to work without windows.h. You can simply cast it HMODULE h = (HMODULE)GetMachineModuleHandle(pmac).
by oskari
Tue Oct 28, 2014 7:55 pm
Forum: Devs
Topic: Pattern XP mod
Replies: 352
Views: 327693

Re: Pattern XP mod

In Pattern XP editor I'd like to be able to trigger the machine help display by double clicking (or by choosing it via left mouse button menu). Main reason would be to more directly/intuitively get info of effects command parameters values while editing patterns. I don't know how to do that. Oskari...
by oskari
Thu Oct 23, 2014 12:33 pm
Forum: Devs
Topic: Building BuzzGUI
Replies: 18
Views: 16662

Re: Building BuzzGUI

I don't know what it is either. Can someone else try this? I only have one vs installation and I don't want to fuck it up.
by oskari
Thu Oct 23, 2014 12:31 pm
Forum: Devs
Topic: Example project for a simple C#/XAML machine (non-DSP)?
Replies: 5
Views: 5474

Re: Example project for a simple C#/XAML machine (non-DSP)?

Relativion is a native machine, it was before "managed machines". See NTracker for an example of parameters.
by oskari
Wed Oct 22, 2014 3:36 pm
Forum: Devs
Topic: Building BuzzGUI
Replies: 18
Views: 16662

Re: Building BuzzGUI

Right click the project -> Manage NuGet Packages -> Installed packages should have PropertyChanged.Fody. Is it there?
by oskari
Wed Oct 22, 2014 1:48 pm
Forum: Devs
Topic: Building BuzzGUI
Replies: 18
Views: 16662

Re: Building BuzzGUI

Some files were filtered out from the svn repo, they are there now.
by oskari
Wed Oct 22, 2014 1:05 pm
Forum: Devs
Topic: Building BuzzGUI
Replies: 18
Views: 16662

Re: Building BuzzGUI

Install the NuGet package manager extension for VS. I think it should automatically get the Fody package then.
by oskari
Wed Oct 22, 2014 11:03 am
Forum: Devs
Topic: Example project for a simple C#/XAML machine (non-DSP)?
Replies: 5
Views: 5474

Re: Example project for a simple C#/XAML machine (non-DSP)?

There are GUI demos already (qsamo, relativion) but sending midi works like this: [MachineDecl(Name = "Jeskola MidiTest", ShortName = "MidiTest", Author = "Oskari Tammelin")] public class MidiTestMachine : IBuzzMachine { IBuzzMachineHost host; List<IMachine> targets = n...