Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Volume initialization bug #393

Closed
timblechmann opened this issue Aug 19, 2012 · 1 comment
Closed

Volume initialization bug #393

timblechmann opened this issue Aug 19, 2012 · 1 comment
Labels
bug Issues that relate to unexpected/unwanted behavior. Don't use for PRs. comp: class library SC class library
Milestone

Comments

@timblechmann
Copy link
Contributor

the initialization of the Volume seems to be buggy:

  • recompile class library
  • set server volume to -1db
  • boot server
  • change server volume while booting
  • the Volume synth won't be created

the output might give some clues (i'm changing the volume via mouse wheel/server window:

Supernova ready
node not found: 1
Shared memory server interface initialized
node not found: 2
node not found: 2
node not found: 2
node not found: 2
node not found: 2
node not found: 2
node not found: 2
node not found: 2
node not found: 2

consulting the class library:

            if (this.inProcess) {
                serverInterface = ServerShmInterface(thisProcess.pid);
            } {
                if (isLocal) {
                    serverInterface = ServerShmInterface(addr.port);
                }
            };

            this.initTree;
            if(volume.volume != 0.0) {
                volume.play;

it seems that if the Server-volume is called before Server-initTree, synth no 1 is not found and after, synth no 2 is not found

@timblechmann
Copy link
Contributor Author

fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Issues that relate to unexpected/unwanted behavior. Don't use for PRs. comp: class library SC class library
Projects
None yet
Development

No branches or pull requests

1 participant