Maidens of the Kaleidoscope
~Hakurei Shrine~ => Rika and Nitori's Garage Experiments => Topic started by: Trung0246 on April 20, 2017, 04:13:02 AM
-
This is the place I will share my work (from good to really stupid one)
Misc:
- Live online editor (http://trung0246.com/touhou) (Have fun with this, currently only work with Javascript (may support for Danmakufu later...), any suggestion are really appreciated)
- Shmup.js bullet hell engine (http://github.com/Trung0246/Shmup) (the above one use v1.2.4)
- Event.dnh (v1.2) (https://pastebin.com/H8Y0h0ta)
A library for handing event when a value of object is changed
Example:
let obj = ObjShot_Create();
ObjShot_Event(obj); //Call this task
@Event {
alternative (GetEventType())
case (EV_OBJ_SHOT_NEW) {
WriteLog("Hello");
}
}
- CreateShotZun.dnh (v1.0) (https://pastebin.com/9QXYJaK7)
A library perfectly(?) replicate ZUN shot function in ecl (th13+) script (from ins_600 to ins_607), more will come in future
Example:
CreateShotZun(
384 / 2, 448 / 2, // equal to ins_603(<id>, x, y)
1.5, 0.75, // equal to ins_605(<id>, 1.5, 0.75)
0, 0, // equal to ins_604(<id>, 0, 0)
100, 1, // equal to ins_606(<id>, 100, 1)
9, // equal to ins_607 (see comment in CreateShotZun function for more detail)
DS_SCALE_YELLOW,
0 //delay
);
Scripts:
Currently I don't have any playable script... will update this later... (just joined 1 year, learning DMF through Sparen's tutorials..)
I like collecting stuff across the Internet, and research, especially some math formulas like polar equations for bullet pattern or codes... If you want me to find things for you, please reply :) (for adding new stuff for my engine but running out of ideas :( )
Please follow specific rules before asking:
- Do not ask for illegal stuff, pirated stuff,...
- I will help only when I have free time, so please don't ask for dead line or things like that
- Don't expect good result (and don't hate me because this :( )
- Please describe as detail as possible (plain English is best, don't use fancy English :( )
- Please know that my knowledge is limited, as same as every fairies, youkai, humans, ... in Gensokyo and around the world
- Please don't spam, and please don't separate multiple suggestions, just dump all of them in only one reply, except things that really, really interesting for me (may Helepolis will take care of this :3c )
- Please be nice :)
And here is pending list:
-
Added two new library that may useful: Event.dnh and CreateShotZun.dnh