diff --git a/Spaceinator.project.gmx b/Spaceinator.project.gmx index 4e16ce3..1ca6c04 100644 --- a/Spaceinator.project.gmx +++ b/Spaceinator.project.gmx @@ -63,6 +63,7 @@ objects\obj_gameover_overlay objects\obj_inventory objects\obj_crafting + objects\obj_crafting_final objects\obj_hotbar diff --git a/objects/obj_crafting.object.gmx b/objects/obj_crafting.object.gmx index 7e7bc14..4ee9948 100644 --- a/objects/obj_crafting.object.gmx +++ b/objects/obj_crafting.object.gmx @@ -30,6 +30,31 @@ move_slot = false; selected_item = 0; selected_total = 0; + +crafting_final_object = instance_create(0,0,obj_crafting_final); + + + + + + + + 1 + 603 + 7 + 0 + 0 + -1 + 2 + + + self + 0 + 0 + + + 1 + instance_destroy(crafting_final_object); @@ -52,8 +77,8 @@ selected_total = 0; 1 - x = view_xview[0]+view_wview[0]/2 - (424/2); -y = view_yview[0]+view_hview[0]/2 - (254/2) - 200; + x = view_xview[0]+view_wview[0]/2 - (424/2) + 90; +y = view_yview[0]+view_hview[0]/2 - (254/2) - 150; var i = 0; diff --git a/objects/obj_crafting_final.object.gmx b/objects/obj_crafting_final.object.gmx new file mode 100644 index 0000000..6c09629 --- /dev/null +++ b/objects/obj_crafting_final.object.gmx @@ -0,0 +1,191 @@ + + + spr_final + 0 + -1 + -4400 + 0 + <undefined> + <undefined> + + + + 1 + 603 + 7 + 0 + 0 + -1 + 2 + + + self + 0 + 0 + + + 1 + selected_slot = 0; + +move_slot = false; +selected_item = 0; +selected_total = 0; + + + + + + + + 1 + 603 + 7 + 0 + 0 + -1 + 2 + + + self + 0 + 0 + + + 1 + x = view_xview[0]+view_wview[0]/2 - (424/2) + 240; +y = view_yview[0]+view_hview[0]/2 - (254/2) - 115; + + +var i = 0; +if((mouse_x >= x && mouse_x <= x+51) && (mouse_y >= y && mouse_y <= y+52)) +{ + for(yy = 8; yy < (5*44); yy+=45) + { + for(xx = 6; xx < (9*45); xx+=45+1) + { + if((mouse_x >= x+xx && mouse_x <= x+xx+45) && (mouse_y >= y+yy && mouse_y <= y+yy+45)) + { + selected_slot = i; + } + i++; + } + } + +} + + + + + + + + 1 + 603 + 7 + 0 + 0 + -1 + 2 + + + self + 0 + 0 + + + 1 + if(!move_slot) +{ + selected_item = obj_inv_controller.inventory[selected_slot]; + if(selected_item == 0) + return false; + selected_total = obj_inv_controller.inventoryCount[selected_slot]; + obj_inv_controller.inventory[selected_slot] = 0; + obj_inv_controller.inventoryCount[selected_slot] = 0; + move_slot = true; +} +else +{ + if(obj_inv_controller.inventory[selected_slot] == 0) + { + + obj_inv_controller.inventory[selected_slot] = selected_item; + obj_inv_controller.inventoryCount[selected_slot] = selected_total; + + move_slot = false; + selected_item = 0; + + } +} + + + + + + + + 1 + 603 + 7 + 0 + 0 + -1 + 2 + + + self + 0 + 0 + + + 1 + draw_self(); +var xx = 6; +var yy = 8; +var i = 0; +for(yy = 8; yy < (5*44); yy+=45) +{ + for(xx = 6; xx < (9*45); xx+=45+1) + { + if(i == selected_slot) + { + draw_set_color(make_colour_rgb(100,100,100)); + draw_rectangle(x+xx,y+yy,x+xx+45,y+yy+44,false) + } + + draw_sprite(spr_blocks,obj_inv_controller.inventory[i],x+xx+6,y+yy+7); + var count = obj_inv_controller.inventoryCount[i]; + + var xoffset = string_width(string(count)) + if(count > 1) + { + draw_set_color(c_white); + draw_text(x+xx+45-xoffset,y+yy+30,string(count)); + } + i++ + } +} + +if(selected_item != 0) +{ + draw_sprite(spr_blocks,selected_item,mouse_x-(TILE_SIZE/2),mouse_y-(TILE_SIZE/2)); +} + + + + + + + 0 + 0 + 0 + 0.5 + 0.100000001490116 + 0 + 0.100000001490116 + 0.100000001490116 + 0.200000002980232 + -1 + 0 + +