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

Feature request(?): pause/continue clock #49

Open
doctea opened this issue Mar 26, 2025 · 3 comments
Open

Feature request(?): pause/continue clock #49

doctea opened this issue Mar 26, 2025 · 3 comments

Comments

@doctea
Copy link
Contributor

doctea commented Mar 26, 2025

Hi! Maybe I'm looking in the wrong place but I couldn't see that it is possible to do this with the current version of the library?

I.e., to pause playing and then to continue where we left off.

Am I missing that this is already implemented somehow?

If not, here is a quick attempt at implementing this. It seems to be working OK in my project so far :)

https://github.com/doctea/uClock/tree/feature-pause-continue

I'll make a PR if this would be useful and if you think its the right way to go about it.

Thanks,

@midilab
Copy link
Owner

midilab commented Mar 26, 2025

Indeed, there is no real pause in the current version.

However, one question comes to mind:

What kind of pause do we want when we are in slave clock mode? Should it be the type that pauses the internal tick state but continues to track the external tick location(when un-pause the internal tick continue from the same place as external tick)? Or should it pause the internal tick and resume from the same tick when unpaused(when un-pause it just continue the tick from where it stops)?

I've seen sequencers doing one or the other, and a few can do both through configuration.

I think an option to configure this via the API for the type of pause would be a good idea.

@doctea
Copy link
Contributor Author

doctea commented Mar 27, 2025

What kind of pause do we want when we are in slave clock mode? Should it be the type that pauses the internal tick state but continues to track the external tick location(when un-pause the internal tick continue from the same place as external tick)? Or should it pause the internal tick and resume from the same tick when unpaused(when un-pause it just continue the tick from where it stops)?

I'm not sure I follow what you mean here..

Are the options,
a) still track the external ticks so that when un-paused we are still in sync with the external clock, but 'mute' any uClock-driven sequencer events that occur in the meantime?
b) complete pause and resume 'as if nothing had happened'?

.. or something else I'm not considering?

For my use cases I'd want "b". "a" for me would be more like a 'mute sequencer' type of function that's distinct from pausing. But maybe I'm confused?

I've seen sequencers doing one or the other, and a few can do both through configuration.

I think an option to configure this via the API for the type of pause would be a good idea.

Definitely, if it is a choice between two behaviours then making it an option would be for the best :)

@PascalMoonify
Copy link

Hi, it would be great. I would also suggest to add a new setOnClockContinue(callback) to declare a callback to manage that specific situation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants