mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-16 13:12:22 +00:00
18 lines
556 B
Plaintext
18 lines
556 B
Plaintext
// /data/ files store data in string format.
|
|
// They don't contain other logic for now.
|
|
/datum/computer_file/data
|
|
var/stored_data = "" // Stored data in string format.
|
|
filetype = "DAT"
|
|
|
|
/datum/computer_file/data/clone()
|
|
var/datum/computer_file/data/temp = ..()
|
|
temp.stored_data = stored_data
|
|
return temp
|
|
|
|
// Calculates file size from amount of characters in saved string
|
|
/datum/computer_file/data/proc/calculate_size(var/block_size = 250)
|
|
size = max(1, round(length(stored_data) / block_size))
|
|
|
|
/datum/computer_file/data/logfile
|
|
filetype = "LOG"
|