2020-12-05 16:09:52 +01:00
|
|
|
keyLeft = keyboard_check(vk_left) or keyboard_check(ord("Q"));
|
|
|
|
keyRight = keyboard_check(vk_right) or keyboard_check(ord("D"));
|
|
|
|
keyUp = keyboard_check(vk_up) or keyboard_check(ord("Z"));
|
|
|
|
keyDown = keyboard_check(vk_down) or keyboard_check(ord("S"));
|
|
|
|
|
|
|
|
|
|
|
|
// Déplacement du joueur
|
2020-12-06 12:57:05 +01:00
|
|
|
depth = -bbox_bottom;
|
2020-12-05 16:09:52 +01:00
|
|
|
|
|
|
|
deplaceHorizontal = keyRight - keyLeft;
|
|
|
|
deplaceVertical = keyDown - keyUp;
|
|
|
|
|
2020-12-06 14:31:54 +01:00
|
|
|
if (isAttack) {
|
|
|
|
sprite_index = sPlayerAttackSlash;
|
2020-12-06 19:49:25 +01:00
|
|
|
image_speed = 1.5;
|
2020-12-06 14:31:54 +01:00
|
|
|
if (compteurFrames == 0) {
|
|
|
|
image_index = indexImageInfo * 4;
|
|
|
|
} else if (compteurFrames > 4) {
|
|
|
|
isAttack = false;
|
|
|
|
}
|
2020-12-06 19:49:25 +01:00
|
|
|
compteurFrames += 0.5;
|
2020-12-06 14:31:54 +01:00
|
|
|
} else {
|
|
|
|
|
2020-12-06 19:43:41 +01:00
|
|
|
if ((deplaceHorizontal > 0 && !place_meeting(x+2, y, oWall))
|
|
|
|
|| (deplaceHorizontal < 0 && !place_meeting(x-2, y, oWall))) {
|
2020-12-06 14:31:54 +01:00
|
|
|
x += deplaceHorizontal*spd;
|
|
|
|
}
|
|
|
|
|
2020-12-06 19:43:41 +01:00
|
|
|
if ((deplaceVertical > 0 && !place_meeting(x, y+2, oWall))
|
|
|
|
|| (deplaceVertical < 0 && !place_meeting(x, y-2, oWall))) {
|
2020-12-06 14:31:54 +01:00
|
|
|
y += deplaceVertical*spd;
|
|
|
|
}
|
|
|
|
|
|
|
|
seDeplace = (deplaceHorizontal != 0 or deplaceVertical != 0);
|
|
|
|
|
|
|
|
// Animation des sprites
|
|
|
|
|
|
|
|
if (seDeplace) {
|
|
|
|
sprite_index = sPlayerRun;
|
|
|
|
//image_speed = 1;
|
|
|
|
if (deplaceHorizontal = 0) {
|
|
|
|
if (deplaceVertical = 1) {
|
|
|
|
image_index = compteurFrames % nbFrames;
|
|
|
|
indexImageInfo = 0;
|
|
|
|
} else {
|
|
|
|
image_index = compteurFrames % nbFrames + 2 * nbFrames;
|
|
|
|
indexImageInfo = 2;
|
|
|
|
}
|
|
|
|
} else if (deplaceHorizontal = 1) {
|
|
|
|
indexImageInfo = 1;
|
|
|
|
image_index = compteurFrames % nbFrames + nbFrames;
|
2020-12-05 22:26:40 +01:00
|
|
|
} else {
|
2020-12-06 14:31:54 +01:00
|
|
|
indexImageInfo = 3;
|
|
|
|
image_index = compteurFrames % nbFrames + 3*nbFrames;
|
2020-12-05 22:26:40 +01:00
|
|
|
}
|
2020-12-06 14:31:54 +01:00
|
|
|
compteurFrames += 0.25*spd;
|
2020-12-05 22:26:40 +01:00
|
|
|
} else {
|
2020-12-06 14:31:54 +01:00
|
|
|
sprite_index = sPlayer;
|
|
|
|
image_index = indexImageInfo;
|
2020-12-05 22:26:40 +01:00
|
|
|
}
|
2020-12-05 14:48:00 +01:00
|
|
|
}
|