aboutsummaryrefslogtreecommitdiff
path: root/src/gameplay/Timer.java
diff options
context:
space:
mode:
authorAidan Ross <aross02@fairport.org>2023-05-25 10:27:55 -0400
committerAidan Ross <aross02@fairport.org>2023-05-25 10:27:55 -0400
commit414d5128c379916a50a015210e6d7caced1825f5 (patch)
treeec0db6e4c2dfa9067ea330b4bdbfeafda94f0851 /src/gameplay/Timer.java
parent389520ddc5064c21dcb0e9317366078ce1c88b65 (diff)
parent1d0890cf11f88e274beddf9fbc132fb80c2f054c (diff)
downloadNPEhero-414d5128c379916a50a015210e6d7caced1825f5.tar.gz
NPEhero-414d5128c379916a50a015210e6d7caced1825f5.tar.bz2
NPEhero-414d5128c379916a50a015210e6d7caced1825f5.zip
Merge branch 'main' of https://gitlab.sowgro.net/guitarheros/guitarhero
Diffstat (limited to 'src/gameplay/Timer.java')
-rw-r--r--src/gameplay/Timer.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/gameplay/Timer.java b/src/gameplay/Timer.java
new file mode 100644
index 0000000..1de576b
--- /dev/null
+++ b/src/gameplay/Timer.java
@@ -0,0 +1,24 @@
+/*Name: Guitar Hero Project
+ *Description: Contains the method used to determine how long the user has been playing,
+ * used to determine when to send notes
+ */
+package gameplay;
+
+
+public class Timer
+{
+ private long timeStart = System.currentTimeMillis();
+ private int bpm;
+
+ public Timer(int newBpm) {
+ bpm = newBpm;
+ }
+
+ public Timer() {
+ bpm = 60000;
+ }
+
+ public double time() {
+ return ((double)(System.currentTimeMillis()-timeStart))*(bpm/60000.0);
+ }
+}