Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Fawf_art

16
Posts
3
Topics
36
Followers
9
Following
A member registered Jul 23, 2019 · View creator page →

Creator of

Recent community posts

These are extremely cool, love how versatile they are

First time hearing the music and sound design, it's really nice!

OK, interesting good to know!

There seems to be an issue with reloading scripts where lots of data is added to a ds_list, thankfully I've found a workaround so hopefully this is useful to someone.

Was getting this error when reloading the create event of a particular object

[live][20/07/2022 10:23:23] Runtime error: [error] { line : 534, script : "gml_Script_vm_group_field_on_field_set", message : "DoSub :2: illegal array use", longMessage : "ERROR in action number 1 of Other Event: User Defined 10 for object obj_bedeBoss:

DoSub :2: illegal array use  at gml_Script_vm_group_field_on_field_set (line 534) -     var l_z=l_st[0]-1; ", stacktrace : [ "gml_Script_vm_group_field_on_field_set (line 534)","gml_Script_anon_gml_thread_gml_GlobalScript_GMLive_thread_3298_gml_thread_gml_GlobalScript_GMLive_thread (line 109) -                     var l_ar1=l_handler(l__gthis,l_act); ","gml_Script_anon_gml_program_gml_GlobalScript_GMLive_program_1897_gml_program_gml_GlobalScript_GMLive_program (line 58) -             l_th.h_exec(); ","gml_Script_live_proc_call_impl (line 33) -     var l_th=l_pg.h_call_v(l_scriptName,l_args1,false); ","gml_Script_live_call (line 74) -                 return live_proc_call_impl(l_data,l_vals,l_def); ","gml_Object_obj_bedeBoss_Other_20 (line 2) - if (live_call()) return live_result; ","gml_Object_obj_bedeBoss_Step_0 (line 3)" ] }  called from game:gml_std_haxe_Exception_caught:1235  called from game:anon_gml_thread_gml_GlobalScript_GMLive_thread_3298_gml_thread_gml_GlobalScript_GMLive_thread:119  called from game:anon_gml_program_gml_GlobalScript_GMLive_program_1897_gml_program_gml_GlobalScript_GMLive_program:58  called from game:live_proc_call_impl:33  called from game:live_call:74  called from game:obj_bedeBoss_Other_20:2  called from game:obj_bedeBoss_Step_0:3  called from 0  called from obj_bedeBoss:Other_20[L221,c36]

Tracked the culprit down to this particular piece of the script

ds_attack_sequence[4] = ds_list_create();
ds_list_add(ds_attack_sequence[4],
"set pdata",0,1.5,260,24,14,
"starfan1","wait15",
"set pdata",0,1.5,265,24,14,
"starfan1","wait15",
"set pdata",0,1.5,270,24,14,
"starfan1","wait15",
"set pdata",0,1.5,275,24,14,
"starfan1","wait15",
"set pdata",0,1.5,280,24,14,
"starfan1","wait60",
"set pdata",0,1.5,280,24,14,
"starfan1","wait15",
"set pdata",0,1.5,275,24,14,
"starfan1","wait15",
"set pdata",0,1.5,270,24,14,
"starfan1","wait15",
"set pdata",0,1.5,265,24,14,
"starfan1","wait15",
"set pdata",0,1.5,260,24,14,
"starfan1","wait60"
);
Commented out, it would reload fine and not throw the error. When I split the data between two different ds_list_add functions I no longer got the error.

ds_attack_sequence[4] = ds_list_create();
ds_list_add(ds_attack_sequence[4],
"set pdata",0,1.5,260,24,14,
"starfan1","wait15",
"set pdata",0,1.5,265,24,14,
"starfan1","wait15",
"set pdata",0,1.5,270,24,14,
"starfan1","wait15",
"set pdata",0,1.5,275,24,14,
"starfan1","wait15",
"set pdata",0,1.5,280,24,14)
ds_list_add(ds_attack_sequence[4],
"starfan1","wait60",
"set pdata",0,1.5,280,24,14,
"starfan1","wait15",
"set pdata",0,1.5,275,24,14,
"starfan1","wait15",
"set pdata",0,1.5,270,24,14,
"starfan1","wait15",
"set pdata",0,1.5,265,24,14,
"starfan1","wait15",
"set pdata",0,1.5,260,24,14,
"starfan1","wait60"
);
Don't know why this happens but I hope this is helpful. This is on runtime v2022.5.2.13

Update. Getting the issue even with very simple code. e.g got a drop in fps from 15k to 9.

if (live_call()) return live_result;
var s_clock = (alarm[0]/main_clock)*3.14;
var r1 = r1_max*sin(s_clock);
var r2 = r2_max*sin(s_clock);
draw_set_color(c_white);
draw_rectangle(x-r1,y-r1,x+r1,y+r1,0);
draw_triangle(x-r2,y,x-r1,y-r1,x-r1,y+r1,0);//left triangle
draw_triangle(x-r1,y-r1,x,y-r2,x+r1,y-r1,0);//top triangle
draw_triangle(x+r1,y-r1,x+r2,y,x+r1,y+r1,0);//right triangle
draw_triangle(x-r1,y+r1,x,y+r2,x+r1,y+r1,0);//bottom triangle

Out of curiousity I tried again but removed "var" temporary variables and it had a small effect but not by much, down to around 20 fps.

This is occuring with 16 of these instances on screen.

That's good to know. This object does use a lot of for loops and it has the worst performance. I am seeing this issue even on some object without for loops however. But that lag might be within what's expected.

Thanks for the workaround, and I might experiment with not temporary variables in the for loops and see what happens.

Cool! I've emailed you a project with the object in and GMLive set up. I am getting similar results with other objects, but this one is by far the worst. It may be the case that this object is just weird, or uses a lot of for loops or something.


Ty for the help!

(3 edits)

I started getting this problem a couple weeks ago, prior to that everything was working perfectly.

The problem seems to be associated with a particular object, obj_waterfish_vector. When updating the draw script, my frames would drop from 800 to 8. When updating the step event script it goes from 800 to 15. Updating the create event script has no effect.

I did think that I was getting this extreme lag for updating the step and draw of any object. However I think I this might be two separate problems. I say this because I had another object, obj_seaweed, which I was getting a drop of 800 to 35. But this was in a room with 80 or so instances of this object. When there is a single instance, the frames would only drop to around 400.

So there seems to be a particular problem with obj_waterfish_vector.  This is the draw script.

if (live_call()) return live_result;
if initialized==1{
    draw_set_color(c_red);
    draw_set_alpha(0.3);
    #region draw line
    var i,ii,l_size,x1,y1,x2,y2;
    l_size = ds_list_size(ds_path_list)/2;
    x1 = x;
    y1 = y;
    for(i=l_size-1;i>0;i--){
        x2 = ds_path_list[|i*2];
        y2 = ds_path_list[|(i*2)+1];
        draw_line(x1,y1,x2,y2);
        x1 = x2;
        y1 = y2;
    }
    #endregion
    #region draw base mesh
    draw_set_alpha(1);
    var xx,yy,xx2,yy2;
    xx = x;
    yy = y;
    /*
    for(i=0;i<33;i++){
        xx2 = ds_anim_mesh[# 0,i];
        yy2 = ds_anim_mesh[# 1,i];
        draw_set_color(c_blue);
        draw_set_alpha(0.3);
        draw_line(xx,yy,xx2,yy2);
        draw_set_color(c_white);
        draw_set_alpha(1);
        draw_text(xx2,yy2,i);
        xx = xx2;
        yy = yy2;
    }*/
    draw_set_alpha(0.5);
    for(i=0;i<30;i++){
        var p1 = triangles[# 0,i];
        var p2 = triangles[# 1,i];
        var p3 = triangles[# 2,i];
        var x1 = ds_anim_mesh[# 0,p1];
        var y1 = ds_anim_mesh[# 1,p1];
        var x2 = ds_anim_mesh[# 0,p2];
        var y2 = ds_anim_mesh[# 1,p2];
        var x3 = ds_anim_mesh[# 0,p3];
        var y3 = ds_anim_mesh[# 1,p3];
        draw_triangle(x1,y1,x2,y2,x3,y3,0);//29
        }
    draw_set_alpha(1);
    draw_set_color(c_white);
    #endregion
}

And here's the step event

if (live_call()) return live_result;
if initialized == 0
    exit;
var i,xx,yy;
#region calculate anim mesh
for(i=0;i<33;i++){
    var a = 0;// angle
    var spine_i = clamp(round((1-ds_base_mesh[# 0,i])*ds_path_max_points-1),0,ds_path_max_points-1)*2;
    var s_x = ds_path_list[|spine_i+0];
    var s_y = ds_path_list[|spine_i+1];
    var ps_x = ds_path_list[|spine_i-2];            // prev spine x
    var ps_y = ds_path_list[|spine_i-1];            // prev spin y
    var b_x = 0;                    // base x
    var b_y = ds_base_mesh[# 1,i]*fish_width;    // base y
    if is_undefined(s_x)==0 && is_undefined(s_y)==0{
        xx = s_x;
        yy = s_y;
        var r_b_x = 1;
        var    r_b_y = 1;
        if is_undefined(ps_x)==0 && is_undefined(ps_y)==0{
            a = -degtorad(point_direction(ps_x,ps_y,s_x,s_y));    // find angle of spine
            r_b_x = (b_x*cos(a))+(b_y*sin(a));                    // rotate base x
            r_b_y = (b_x*sin(a))-(b_y*cos(a));                    // rotate base y
        }
        ds_anim_mesh[# 0,i] = xx+r_b_x;
        ds_anim_mesh[# 1,i] = yy+r_b_y;
    }
}
#endregion
#region movement
var tar_vec_x,tar_vec_y;
target_direction = degtorad(point_direction(x,y,target_x,target_y));
tar_vec_x = cos(target_direction);
tar_vec_y = -sin(target_direction);
dir_vec_x +=tar_vec_x*target_influence;
dir_vec_y +=tar_vec_y*target_influence;
var _ra; // radian angle
dir = point_direction(0,0,dir_vec_x,dir_vec_y)
_ra = degtorad(dir);
dir_vec_x = cos(_ra);
dir_vec_y = -sin(_ra);
//x+=dir_vec_x*move_speed;
//y+=dir_vec_y*move_speed;
x+=dir_vec_x*move_speed;
y+=dir_vec_y*move_speed;
m_i = floor(ds_path_max_points/2);
//mid_x = ds_path_list[|(m_i*2)+0]-(fish_length/2);
//mid_y = ds_path_list[|(m_i*2)+1]-(fish_length/2);
mid_x = ds_path_list[|(m_i*2)+0]
mid_y = ds_path_list[|(m_i*2)+1]
#endregion
#region behavior
if behavior_mode = "patrol"{
    move_speed = patrol_speed;
    if point_distance(x,y,target_x,target_y)<arrived_distance{
        current_ppoint_i++
        if current_ppoint_i>=ppoint_max
            current_ppoint_i = 0;
        //var next_target;
        //next_target = ds_patrol_points[|current_ppoint_i];
        //if instance_exists(next_target){
        target_x = ds_patrol_points[|0+(current_ppoint_i*2)];
        target_y = ds_patrol_points[|1+(current_ppoint_i*2)];
        home_x = target_x;
        home_y = target_y;
            //}
    }
    var x1,y1,x2,y2,x3,y3,_dist,_size;
    _dist = 180;
    _size = 45;
    x1 = x;
    y1 = y;
    x2 = x1+lengthdir_x(_dist,dir+_size);
    y2 = y1+lengthdir_y(_dist,dir+_size);
    x3 = x1+lengthdir_x(_dist,dir-_size);
    y3 = y1+lengthdir_y(_dist,dir-_size);
    if point_in_triangle(obj_bern.x,obj_bern.y,x1,y1,x2,y2,x3,y3){
        behavior_mode = "hunt";
    }
}
if behavior_mode = "hunt"{
    move_speed = pursuit_speed;
    target_x = obj_bern.x;
    target_y = obj_bern.y;
    if point_distance(x,y,target_x,target_y)>disengagement_distance
    or point_distance(x,y,home_x,home_y)>max_home_dist{
        event_user(1);
    }
}
#endregion

As far as I'm aware there's nothing special about these scripts. This object is a duplicate of a similar object with a different, more developed and complex system in the draw event. That object suffers from the same problem.

I'm yet to go through and check all of the past objects that were reasonably complex that use GMLive in the step and draw events, but I will check those out and update the thread.

Awesome extension btw, I've been using it for a little while and it's saved me a huge amount of time.


:update:

Issue seems to be present in all draw and step events. current version IDE v2020.5.1.16 runtime v2022.5.2.13

Awesome! thanks!

COOL game

Hey thanks, dude! That would have been cool but I kinda rushed the video out the door asap so I could forget about it haha. I did think about adding palette swaps but also didn't do that for the same reason, I figured people could do it themselves

game is rad

ty, I've added licence to description.

Thanks! I've added a basic licence.

Haha yeah I don't really have trees. I might add some later.


Thanks!

My project got corrupted somehow, couldn't even import the assets. This basically fixed it immediately with no trouble. going to look into source control now lol