generated from ShadowMario/FNF-PsychEngine
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8cff37a
commit e5ded95
Showing
6 changed files
with
165 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package meta.data.input; | ||
|
||
import haxe.macro.Type.AbstractType; | ||
import objects.*; | ||
|
||
// wip | ||
class InputSystem { | ||
public var holdArray:Array<Bool> = []; | ||
public var pressArray:Array<Bool> = []; | ||
public var releaseArray:Array<Bool> = []; | ||
|
||
public function new() {} | ||
|
||
public function goodNoteHit(note) { | ||
Reflect.field(PlayState.instance, "goodNoteHit")(note); | ||
} | ||
|
||
public function noteMissPress(key) { | ||
Reflect.field(PlayState.instance, "noteMissPress")(key); | ||
} | ||
|
||
public function callOnScripts(script,args) { | ||
Reflect.field(PlayState.instance, "callOnScripts")(script,args); | ||
} | ||
|
||
public function noteMissed(note:Note) {} | ||
public function updateNote(note:Note, elapsed:Float) {} | ||
public function keyPressed(key:Int) {} | ||
public function keysCheck():Void {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters