-
-
Notifications
You must be signed in to change notification settings - Fork 682
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Port] Adds crate shelves to the game #11229
Merged
Merged
Changes from 1 commit
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
80ffba9
shelves
XeonMations 7560c6c
Update crateshelf.dm
XeonMations 31907be
Merge remote-tracking branch 'upstream/master' into crate-shelves
XeonMations 6af5501
updated shelf icon
XeonMations 0b92000
crate shelf parts icon
XeonMations b22f965
aaa
XeonMations e530a8b
Update crateshelf.dm
XeonMations c556a14
initialize
XeonMations 4929ba6
new sprite
XeonMations de21853
fixed
XeonMations File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
#define DEFAULT_SHELF_CAPACITY 3 // Default capacity of the shelf | ||
#define DEFAULT_SHELF_USE_DELAY 1 SECONDS // Default interaction delay of the shelf | ||
#define DEFAULT_SHELF_VERTICAL_OFFSET 15 // Vertical pixel offset of shelving-related things. Set to 10 by default due to this leaving more of the crate on-screen to be clicked. | ||
|
||
/obj/structure/crate_shelf | ||
name = "crate shelf" | ||
desc = "It's a shelf! For storing crates!" | ||
icon = 'icons/obj/objects.dmi' | ||
icon_state = "shelf_base" | ||
density = TRUE | ||
anchored = TRUE | ||
layer = BELOW_OBJ_LAYER | ||
max_integrity = 50 // Not hard to break | ||
|
||
var/capacity = DEFAULT_SHELF_CAPACITY | ||
var/use_delay = DEFAULT_SHELF_USE_DELAY | ||
var/list/shelf_contents | ||
|
||
/obj/structure/crate_shelf/tall | ||
capacity = 12 | ||
|
||
/obj/structure/crate_shelf/Initialize() | ||
. = ..() | ||
shelf_contents = new/list(capacity) // Initialize our shelf's contents list, this will be used later. | ||
var/stack_layer // This is used to generate the sprite layering of the shelf pieces. | ||
var/stack_offset // This is used to generate the vertical offset of the shelf pieces. | ||
for(var/i in 1 to (capacity - 1)) | ||
stack_layer = ABOVE_MOB_LAYER + (0.02 * i) - 0.01 // Make each shelf piece render above the last, but below the crate that should be on it. | ||
stack_offset = DEFAULT_SHELF_VERTICAL_OFFSET * i // Make each shelf piece physically above the last. | ||
overlays += image(icon = 'icons/obj/objects.dmi', icon_state = "shelf_stack", layer = stack_layer, pixel_y = stack_offset) | ||
return | ||
|
||
/obj/structure/crate_shelf/Destroy() | ||
QDEL_LIST(shelf_contents) | ||
return ..() | ||
|
||
/obj/structure/crate_shelf/examine(mob/user) | ||
. = ..() | ||
. += "<span class='notice'>There are some <b>bolts</b> holding [src] together.</span>" | ||
if(shelf_contents.Find(null)) // If there's an empty space in the shelf, let the examiner know. | ||
. += "<span class='notice'>You could <b>drag</b> a crate into [src]." | ||
if(contents.len) // If there are any crates in the shelf, let the examiner know. | ||
. += "<span class='notice'>You could <b>drag</b> a crate out of [src]." | ||
. += "<span class='notice'>[src] contains:</span>" | ||
for(var/obj/structure/closet/crate/crate in shelf_contents) | ||
. += " [icon2html(crate, user)] [crate]" | ||
|
||
/obj/structure/crate_shelf/attackby(obj/item/item, mob/living/user, params) | ||
if (item.tool_behaviour == TOOL_WRENCH && !(flags_1&NODECONSTRUCT_1)) | ||
item.play_tool_sound(src) | ||
if(do_after(user, 3 SECONDS, target = src)) | ||
deconstruct(TRUE) | ||
return TRUE | ||
return ..() | ||
|
||
/obj/structure/crate_shelf/relay_container_resist(mob/living/user, obj/structure/closet/crate) | ||
to_chat(user, "<span class='notice'>You begin attempting to knock [crate] out of [src].</span>") | ||
if(do_after(user, 30 SECONDS, target = crate)) | ||
if(!user || user.stat != CONSCIOUS || user.loc != crate || crate.loc != src) | ||
return // If the user is in a strange condition, return early. | ||
visible_message("<span class='warning'>[crate] falls off of [src]!</span>", | ||
"<span class='notice'>You manage to knock [crate] free of [src].</span>", | ||
"<span class='notice>You hear a thud.</span>") | ||
crate.forceMove(drop_location()) // Drop the crate onto the shelf, | ||
step_rand(crate, 1) // Then try to push it somewhere. | ||
crate.layer = initial(crate.layer) // Reset the crate back to having the default layer, otherwise we might get strange interactions. | ||
crate.pixel_y = initial(crate.pixel_y) // Reset the crate back to having no offset, otherwise it will be floating. | ||
shelf_contents[shelf_contents.Find(crate)] = null // Remove the reference to the crate from the list. | ||
handle_visuals() | ||
|
||
/obj/structure/crate_shelf/proc/handle_visuals() | ||
vis_contents = contents // It really do be that shrimple. | ||
return | ||
|
||
/obj/structure/crate_shelf/proc/load(obj/structure/closet/crate/crate, mob/user) | ||
var/next_free = shelf_contents.Find(null) // Find the first empty slot in the shelf. | ||
if(!next_free) // If we don't find an empty slot, return early. | ||
balloon_alert(user, "shelf full!") | ||
return FALSE | ||
if(do_after(user, use_delay, target = crate)) | ||
if(shelf_contents[next_free] != null) | ||
return FALSE // Something has been added to the shelf while we were waiting, abort! | ||
if(crate.opened) // If the crate is open, try to close it. | ||
if(!crate.close()) | ||
return FALSE // If we fail to close it, don't load it into the shelf. | ||
shelf_contents[next_free] = crate // Insert a reference to the crate into the free slot. | ||
crate.forceMove(src) // Insert the crate into the shelf. | ||
crate.pixel_y = DEFAULT_SHELF_VERTICAL_OFFSET * (next_free - 1) // Adjust the vertical offset of the crate to look like it's on the shelf. | ||
crate.layer = ABOVE_MOB_LAYER + 0.02 * (next_free - 1) // Adjust the layer of the crate to look like it's in the shelf. | ||
handle_visuals() | ||
return TRUE | ||
return FALSE // If the do_after() is interrupted, return FALSE! | ||
|
||
/obj/structure/crate_shelf/proc/unload(obj/structure/closet/crate/crate, mob/user, turf/unload_turf) | ||
if(!unload_turf) | ||
unload_turf = get_turf(user) // If a turf somehow isn't passed into the proc, put it at the user's feet. | ||
if(!unload_turf.Enter(crate)) // If moving the crate from the shelf to the desired turf would bump, don't do it! | ||
unload_turf.balloon_alert(user, "no room!") | ||
return FALSE | ||
if(do_after(user, use_delay, target = crate)) | ||
if(!shelf_contents.Find(crate)) | ||
return FALSE // If something has happened to the crate while we were waiting, abort! | ||
crate.layer = initial(crate.layer) // Reset the crate back to having the default layer, otherwise we might get strange interactions. | ||
crate.pixel_y = initial(crate.pixel_y) // Reset the crate back to having no offset, otherwise it will be floating. | ||
crate.forceMove(unload_turf) | ||
shelf_contents[shelf_contents.Find(crate)] = null // We do this instead of removing it from the list to preserve the order of the shelf. | ||
handle_visuals() | ||
return TRUE | ||
return FALSE // If the do_after() is interrupted, return FALSE! | ||
|
||
/obj/structure/crate_shelf/deconstruct(disassembled = TRUE) | ||
var/turf/dump_turf = drop_location() | ||
for(var/obj/structure/closet/crate/crate in shelf_contents) | ||
crate.layer = initial(crate.layer) // Reset the crates back to default visual state | ||
crate.pixel_y = initial(crate.pixel_y) | ||
crate.forceMove(dump_turf) | ||
step(crate, pick(GLOB.alldirs)) // Shuffle the crates around as though they've fallen down. | ||
crate.SpinAnimation(rand(4,7), 1) // Spin the crates around a little as they fall. Randomness is applied so it doesn't look weird. | ||
switch(pick(1, 1, 1, 1, 2, 2, 3)) // Randomly pick whether to do nothing, open the crate, or break it open. | ||
XeonMations marked this conversation as resolved.
Show resolved
Hide resolved
|
||
if(1) // Believe it or not, this does nothing. | ||
if(2) // Open the crate! | ||
if(crate.open()) // Break some open, cause a little chaos. | ||
crate.visible_message("<span class='warning'>[crate]'s lid falls open!</span>") | ||
else // If we somehow fail to open the crate, just break it instead! | ||
crate.visible_message("<span class='warning'>[crate] falls apart!") | ||
crate.deconstruct() | ||
if(3) // Break that crate! | ||
crate.visible_message("<span class='warning'>[crate] falls apart!") | ||
crate.deconstruct() | ||
shelf_contents[shelf_contents.Find(crate)] = null | ||
if(!(flags_1&NODECONSTRUCT_1)) | ||
density = FALSE | ||
var/obj/item/rack_parts/shelf/newparts = new(loc) | ||
transfer_fingerprints_to(newparts) | ||
return ..() | ||
|
||
/obj/item/rack_parts/shelf | ||
name = "crate shelf parts" | ||
desc = "Parts of a shelf." | ||
construction_type = /obj/structure/crate_shelf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check to see if the crate is next to the user, rather than if the crate is next to the shelf so that you can drag a crate onto a shelf when it is behind you and not adjacent to the shelf.