fuck you
This commit is contained in:
parent
368a6f8787
commit
28cc2a96d2
17
assets/preload/data/milf/modchart.lua
Normal file
17
assets/preload/data/milf/modchart.lua
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
function start (song)
|
||||||
|
print("Song: " .. song .. " @ " .. bpm .. " donwscroll: " .. downscroll)
|
||||||
|
end
|
||||||
|
|
||||||
|
function update (elapsed) -- modified example https://twitter.com/KadeDeveloper/status/1382178179184422918
|
||||||
|
print(fuckyou[1])
|
||||||
|
end
|
||||||
|
|
||||||
|
function beatHit (beat)
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
function stepHit (step)
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
print("Mod Chart script loaded :)")
|
@ -56,6 +56,52 @@ class ModchartState
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static function toLua(l:State, val:Any):Bool {
|
||||||
|
switch (Type.typeof(val)) {
|
||||||
|
case Type.ValueType.TNull:
|
||||||
|
Lua.pushnil(l);
|
||||||
|
case Type.ValueType.TBool:
|
||||||
|
Lua.pushboolean(l, val);
|
||||||
|
case Type.ValueType.TInt:
|
||||||
|
Lua.pushinteger(l, cast(val, Int));
|
||||||
|
case Type.ValueType.TFloat:
|
||||||
|
Lua.pushnumber(l, val);
|
||||||
|
case Type.ValueType.TClass(String):
|
||||||
|
Lua.pushstring(l, cast(val, String));
|
||||||
|
case Type.ValueType.TClass(Array):
|
||||||
|
Convert.arrayToLua(l, val);
|
||||||
|
case Type.ValueType.TObject:
|
||||||
|
objectToLua(l, val);
|
||||||
|
default:
|
||||||
|
trace("haxe value not supported - " + val + " which is a type of " + Type.typeof(val));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
static function objectToLua(l:State, res:Any) {
|
||||||
|
|
||||||
|
var FUCK = 0;
|
||||||
|
for(n in Reflect.fields(res))
|
||||||
|
{
|
||||||
|
trace(Type.typeof(n).getName());
|
||||||
|
FUCK++;
|
||||||
|
}
|
||||||
|
|
||||||
|
Lua.createtable(l, FUCK, 0); // TODONE: I did it
|
||||||
|
|
||||||
|
for (n in Reflect.fields(res)){
|
||||||
|
if (!Reflect.isObject(n))
|
||||||
|
continue;
|
||||||
|
Lua.pushstring(l, n);
|
||||||
|
toLua(l, Reflect.field(res, n));
|
||||||
|
Lua.settable(l, -3);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
function getType(l, type):Any
|
function getType(l, type):Any
|
||||||
{
|
{
|
||||||
return switch Lua.type(l,type) {
|
return switch Lua.type(l,type) {
|
||||||
@ -179,6 +225,11 @@ class ModchartState
|
|||||||
return luaSprites.get(id);
|
return luaSprites.get(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getPropertyByName(id:String)
|
||||||
|
{
|
||||||
|
return Reflect.field(PlayState.instance,id);
|
||||||
|
}
|
||||||
|
|
||||||
public static var luaSprites:Map<String,FlxSprite> = [];
|
public static var luaSprites:Map<String,FlxSprite> = [];
|
||||||
|
|
||||||
|
|
||||||
@ -195,9 +246,7 @@ class ModchartState
|
|||||||
|
|
||||||
// Cap the scale at x1
|
// Cap the scale at x1
|
||||||
if (scale > 1)
|
if (scale > 1)
|
||||||
{
|
|
||||||
scale = 1;
|
scale = 1;
|
||||||
}
|
|
||||||
|
|
||||||
sprite.makeGraphic(Std.int(data.width * scale),Std.int(data.width * scale),FlxColor.TRANSPARENT);
|
sprite.makeGraphic(Std.int(data.width * scale),Std.int(data.width * scale),FlxColor.TRANSPARENT);
|
||||||
|
|
||||||
@ -301,6 +350,8 @@ class ModchartState
|
|||||||
|
|
||||||
trace(Lua_helper.add_callback(lua,"makeSprite", makeLuaSprite));
|
trace(Lua_helper.add_callback(lua,"makeSprite", makeLuaSprite));
|
||||||
|
|
||||||
|
trace(Lua_helper.add_callback(lua,"getProperty", getPropertyByName));
|
||||||
|
|
||||||
Lua_helper.add_callback(lua,"destroySprite", function(id:String) {
|
Lua_helper.add_callback(lua,"destroySprite", function(id:String) {
|
||||||
var sprite = luaSprites.get(id);
|
var sprite = luaSprites.get(id);
|
||||||
if (sprite == null)
|
if (sprite == null)
|
||||||
@ -639,6 +690,10 @@ class ModchartState
|
|||||||
FlxG.camera.setFilters([new ShaderFilter(shaders[shaderIndex])]);
|
FlxG.camera.setFilters([new ShaderFilter(shaders[shaderIndex])]);
|
||||||
});*/
|
});*/
|
||||||
|
|
||||||
|
|
||||||
|
objectToLua(lua,PlayState.instance.camHUD);
|
||||||
|
Lua.setglobal(lua,"fuckyou");
|
||||||
|
|
||||||
// default strums
|
// default strums
|
||||||
|
|
||||||
for (i in 0...PlayState.strumLineNotes.length) {
|
for (i in 0...PlayState.strumLineNotes.length) {
|
||||||
|
@ -151,7 +151,7 @@ class PlayState extends MusicBeatState
|
|||||||
var notesHitArray:Array<Date> = [];
|
var notesHitArray:Array<Date> = [];
|
||||||
var currentFrames:Int = 0;
|
var currentFrames:Int = 0;
|
||||||
|
|
||||||
var dialogue:Array<String> = ['dad:blah blah blah', 'bf:coolswag'];
|
public var dialogue:Array<String> = ['dad:blah blah blah', 'bf:coolswag'];
|
||||||
|
|
||||||
var halloweenBG:FlxSprite;
|
var halloweenBG:FlxSprite;
|
||||||
var isHalloween:Bool = false;
|
var isHalloween:Bool = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user