mirror of https://github.com/adamdruppe/arsd.git
Merge pull request #287 from MuriloMir/patch-1
adding .paused() as a property
This commit is contained in:
commit
5ac7d88bd1
|
@ -213,6 +213,11 @@ interface SampleController {
|
||||||
If the sample has finished playing. Happens when it runs out or if it is stopped.
|
If the sample has finished playing. Happens when it runs out or if it is stopped.
|
||||||
+/
|
+/
|
||||||
bool finished();
|
bool finished();
|
||||||
|
|
||||||
|
/++
|
||||||
|
If the sample has beend paused.
|
||||||
|
+/
|
||||||
|
bool paused();
|
||||||
}
|
}
|
||||||
|
|
||||||
private class DummySample : SampleController {
|
private class DummySample : SampleController {
|
||||||
|
@ -221,19 +226,21 @@ private class DummySample : SampleController {
|
||||||
void stop() {}
|
void stop() {}
|
||||||
float position() { return float.init; }
|
float position() { return float.init; }
|
||||||
bool finished() { return true; }
|
bool finished() { return true; }
|
||||||
|
bool paused() { return true; }
|
||||||
}
|
}
|
||||||
|
|
||||||
private class SampleControlFlags : SampleController {
|
private class SampleControlFlags : SampleController {
|
||||||
void pause() { paused = true; }
|
void pause() { paused_ = true; }
|
||||||
void resume() { paused = false; }
|
void resume() { paused_ = false; }
|
||||||
void stop() { paused = false; stopped = true; }
|
void stop() { paused_ = false; stopped = true; }
|
||||||
|
|
||||||
bool paused;
|
bool paused_;
|
||||||
bool stopped;
|
bool stopped;
|
||||||
bool finished_;
|
bool finished_;
|
||||||
|
|
||||||
float position() { return currentPosition; }
|
float position() { return currentPosition; }
|
||||||
bool finished() { return finished_; }
|
bool finished() { return finished_; }
|
||||||
|
bool paused() { return paused_; }
|
||||||
|
|
||||||
float currentPosition = 0.0;
|
float currentPosition = 0.0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue