wireless effects

oskari
Site Admin
Posts: 296
Joined: Mon Nov 21, 2011 2:04 pm

wireless effects

Post by oskari »

http://jeskola.net/buzz/beta/files/exam ... reless.wmv

This is useful for global or "send" effects that are shared by multiple machines.
mute
Posts: 417
Joined: Mon Nov 21, 2011 8:30 pm

Re: wireless effects

Post by mute »

nice!
vaisnava
Posts: 42
Joined: Mon Nov 21, 2011 11:44 pm

Re: wireless effects

Post by vaisnava »

:shock:

Oskari, thank you SO much. I have been dreaming about something like this for years!

:D
User avatar
tinga
Posts: 526
Joined: Tue Nov 22, 2011 5:25 pm

Re: wireless effects

Post by tinga »

In many case, make the things more clear
(applause)
flat
Posts: 34
Joined: Thu Nov 24, 2011 4:55 pm

Re: wireless effects

Post by flat »

Uau!! Thanks.
mute
Posts: 417
Joined: Mon Nov 21, 2011 8:30 pm

Re: wireless effects

Post by mute »

it would be cool if a paging system was added to buzz's machine view, to give the impression there can be multiple views. that way wireless machines could be used for even further organization. im imagining something like the switcher in android, or expose on osx, mixed with virtual desktops (appearance wise, but not memory duplicating wise). that way we could use wireless on a gain to split up multiple views. perhaps this is something already planned?
User avatar
Reefer Sutherland
Posts: 96
Joined: Thu Nov 24, 2011 3:17 pm
Contact:

Re: wireless effects

Post by Reefer Sutherland »

I've just started using a program called VVVV, and it looks similar to both Buzz and Max/MSP.
It has many ways to deal with messy patches, one of which is the way the wires are drawn.
There are several different "modes" to draw the wires. Like straight, curved, horizontal-vertical-horizontal
and multiple anchor points. This can be changed on every individual wire using ctrl+y.. Very handy I think :)


Just tried wireless, it looks like it could be very useful for some things.
It could get a bit confusing when you connect to many effects with the same name though.
oskari
Site Admin
Posts: 296
Joined: Mon Nov 21, 2011 2:04 pm

Re: wireless effects

Post by oskari »

Reefer Sutherland wrote: Just tried wireless, it looks like it could be very useful for some things.
It could get a bit confusing when you connect to many effects with the same name though.
You can rename your effects to 1st reverb, 2nd reverb or whatever.
vaisnava
Posts: 42
Joined: Mon Nov 21, 2011 11:44 pm

Re: wireless effects

Post by vaisnava »

Oh wait... i thought it was something different, but kind of the same.

Is there anyway to make it like a wireless Bus? To be able to route FX wireless to an FX Bus... sort of like those AuxSend setups?

Maybe have a wireless drop down menu that give you automatic "Sends 1/2, 3/4, 5/6, etc" on Generators and then automatic "Receives 1/2, 3/4, 5/6, etc" on all Effects? Useless of Useful?
oskari
Site Admin
Posts: 296
Joined: Mon Nov 21, 2011 2:04 pm

Re: wireless effects

Post by oskari »

The squares in the generators are aux send and the effect->master connection is aux return.
User avatar
Reefer Sutherland
Posts: 96
Joined: Thu Nov 24, 2011 3:17 pm
Contact:

Re: wireless effects

Post by Reefer Sutherland »

oskari wrote:
Reefer Sutherland wrote: Just tried wireless, it looks like it could be very useful for some things.
It could get a bit confusing when you connect to many effects with the same name though.
You can rename your effects to 1st reverb, 2nd reverb or whatever.
That is very true :)
User avatar
strobotone
Posts: 297
Joined: Wed Nov 23, 2011 2:59 pm
Location: berlin
Contact:

Re: wireless effects

Post by strobotone »

awesome !

one just has to take the additional box into account for theming.
just getting rid of my auxbus setup and use the wireless feature instead.
User avatar
IXix
Posts: 1113
Joined: Wed Nov 23, 2011 3:24 pm

Re: wireless effects

Post by IXix »

How do I change the appearance of the wireless connection box?
oskari
Site Admin
Posts: 296
Joined: Mon Nov 21, 2011 2:04 pm

Re: wireless effects

Post by oskari »

It's in MachineControl.xaml.
User avatar
IXix
Posts: 1113
Joined: Wed Nov 23, 2011 3:24 pm

Re: wireless effects

Post by IXix »

oskari wrote:It's in MachineControl.xaml.
Thanks. Line 124 if anyone else wants to know.
User avatar
IXix
Posts: 1113
Joined: Wed Nov 23, 2011 3:24 pm

Re: wireless effects

Post by IXix »

It would be cool if you could mouse-over the wireless box and Buzz would show the hidden connection, maybe semi-transparent or something, until the mouse leaves the box. Would that be possible?
mute
Posts: 417
Joined: Mon Nov 21, 2011 8:30 pm

Re: wireless effects

Post by mute »

I bet you can do that via the XAML.. I do that in my theme on the mouse over of the connection arrows;

Image
mute
Posts: 417
Joined: Mon Nov 21, 2011 8:30 pm

Re: wireless effects

Post by mute »

here's a clip from my code if someone wants to try to figure it out.

Code: Select all

					  <Path.ToolTip>
						<Grid TextOptions.TextFormattingMode="Display">
							<Grid.ColumnDefinitions>
								 <ColumnDefinition Width="115"/>
								 <ColumnDefinition Width="Auto"/>
							 </Grid.ColumnDefinitions>
													 
							 <Grid.RowDefinitions>
								<RowDefinition Height="Auto"/>
								<RowDefinition Height="Auto"/>
								<RowDefinition Height="Auto"/>
								<RowDefinition Height="Auto"/>
								<RowDefinition Height="Auto"/>
								<RowDefinition Height="Auto"/>														
								<RowDefinition Height="Auto"/>														
							</Grid.RowDefinitions>
										
							<TextBlock Grid.Column="0" Grid.Row="0" Text="Source Machine:" />
							<TextBlock Grid.Column="1" Grid.Row="0" Text="{Binding Path=Source.Machine.DLL.Info.Name}"/>
							<TextBlock Grid.Column="0" Grid.Row="1" Text="Source Chan:" />
							<TextBlock Grid.Column="1" Grid.Row="1"><TextBlock Text="{Binding Path=MachineConnection.SourceChannel}"/> : <TextBlock x:Name="SrcName" Text="{Binding Path=SourcePlugInfo.ChannelName}"/></TextBlock>						
							
							<Separator Grid.Column="0" Grid.Row="2"/><Separator Grid.Column="1" Grid.Row="2"/>
							
							<TextBlock Grid.Column="0" Grid.Row="3" Text="Destination Machine:" />
							<TextBlock Grid.Column="1" Grid.Row="3" Text="{Binding Path=Destination.Machine.DLL.Info.Name}"/>
							<TextBlock Grid.Column="0" Grid.Row="4" Text="Destination Chan:" />
							<TextBlock Grid.Column="1" Grid.Row="4"><TextBlock Text="{Binding Path=MachineConnection.DestinationChannel}"/> : <TextBlock x:Name="DesName" Text="{Binding Path=DestinationPlugInfo.ChannelName}"/></TextBlock>
							
						</Grid>
					 </Path.ToolTip>
User avatar
Klangkulisse
Posts: 304
Joined: Tue Nov 22, 2011 12:20 am
Location: ••• Düsseldorf ••• Made of Light

Re: wireless effects

Post by Klangkulisse »

Thanks for posting, I will try it.
User avatar
IXix
Posts: 1113
Joined: Wed Nov 23, 2011 3:24 pm

Re: wireless effects

Post by IXix »

mute wrote:I bet you can do that via the XAML.. I do that in my theme on the mouse over of the connection arrows;

Image
That's cool, thanks for posting the code. I wonder if you can retrieve the gain and pan settings too?

I'm not sure if my idea could be done just from the xaml. I'd be very happy to be proved wrong though. I wish I had time to delve into this stuff more. I've only skimmed the surface of xaml, just learning enough to make a simple machine GUI work.
Post Reply