//detective spyglasses. meant to be an example for map_popups.dm /obj/item/clothing/glasses/sunglasses/spy desc = "Made by Nerd. Co's infiltration and surveillance department. Upon closer inspection, there's a small screen in each lens." actions_types = list(/datum/action/item_action/activate_remote_view) var/obj/item/clothing/accessory/spy_bug/linked_bug /obj/item/clothing/glasses/sunglasses/spy/proc/show_to_user(mob/user)//this is the meat of it. most of the map_popup usage is in this. var/client/cool_guy = user?.client if(!cool_guy) return if(!linked_bug) user.audible_message(span_warning("[src] lets off a shrill beep!")) return if(cool_guy.screen_maps["spypopup_map"]) //alright, the popup this object uses is already IN use, so the window is open. no point in doing any other work here, so we're good. return cool_guy.setup_popup("spypopup", 3, 3, 2, "S.P.Y") linked_bug.cam_screen.display_to(user) RegisterSignal(cool_guy, COMSIG_POPUP_CLEARED, PROC_REF(on_screen_clear)) linked_bug.update_view() /obj/item/clothing/glasses/sunglasses/spy/proc/on_screen_clear(client/source, window) SIGNAL_HANDLER linked_bug.cam_screen.hide_from_client(source) UnregisterSignal(source, COMSIG_POPUP_CLEARED) /obj/item/clothing/glasses/sunglasses/spy/equipped(mob/user, slot) . = ..() if(!(slot & ITEM_SLOT_EYES)) user.client?.close_popup("spypopup") /obj/item/clothing/glasses/sunglasses/spy/dropped(mob/user) . = ..() user.client?.close_popup("spypopup") /obj/item/clothing/glasses/sunglasses/spy/ui_action_click(mob/user) show_to_user(user) /obj/item/clothing/glasses/sunglasses/spy/Destroy() if(linked_bug) linked_bug.linked_glasses = null . = ..() /datum/action/item_action/activate_remote_view name = "Activate Remote View" desc = "Activates the Remote View of your spy sunglasses." /obj/item/clothing/accessory/spy_bug name = "pocket protector" icon = 'icons/obj/clothing/accessories.dmi' icon_state = "pocketprotector" desc = "An advanced piece of espionage equipment in the shape of a pocket protector. It has a built in 360 degree camera for all your \"admirable\" needs. Microphone not included." /// The glasses that you can use to see what this can see var/obj/item/clothing/glasses/sunglasses/spy/linked_glasses /// Our camera display popup var/atom/movable/screen/map_view/cam_screen /// How far can we actually see? Ranges higher than one can be used to see through walls. var/cam_range = 1 /// Detects when we move to update the camera view var/datum/movement_detector/tracker /obj/item/clothing/accessory/spy_bug/Initialize(mapload) . = ..() AddComponent(/datum/component/pinnable_accessory) tracker = new /datum/movement_detector(src, CALLBACK(src, PROC_REF(update_view))) cam_screen = new cam_screen.generate_view("spypopup_map") /obj/item/clothing/accessory/spy_bug/Destroy() if(linked_glasses) linked_glasses.linked_bug = null QDEL_NULL(cam_screen) QDEL_NULL(tracker) . = ..() /obj/item/clothing/accessory/spy_bug/proc/update_view()//this doesn't do anything too crazy, just updates the vis_contents of its screen obj cam_screen.vis_contents.Cut() for(var/turf/visible_turf in view(cam_range, get_turf(src)))//fuck you usr cam_screen.vis_contents += visible_turf /obj/item/paper/fluff/nerddocs name = "Espionage For Dummies" color = COLOR_YELLOW desc = "An eye-gougingly yellow pamphlet with a badly designed image of a detective on it. The subtext says \"The latest way to violate privacy guidelines!\" " default_raw_text = @{" Thank you for your purchase of the Nerd Co SpySpeks tm, this paper will be your quick-start guide to violating the privacy of your crewmates in three easy steps!

Step One: Nerd Co SpySpeks tm upon your face.
Step Two: Place the included "ProfitProtektor tm" camera assembly in a place of your choosing - make sure to make heavy use of its inconspicous design! Step Three: Press the "Activate Remote View" Button on the side of your SpySpeks tm to open a movable camera display in the corner of your vision, it's just that easy!


TROUBLESHOOTING
My SpySpeks tm Make a shrill beep while attempting to use! A shrill beep coming from your SpySpeks means that they can't connect to the included ProfitProtektor tm, please make sure your ProfitProtektor is still active, and functional! "}