pse/luau/types.luau
2024-12-29 12:00:44 -05:00

130 lines
4.5 KiB
Plaintext

--!strict
--------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------
type class_constructor<CON, F, EXT = {}> = {
__index: CON,
new: F,
} & EXT
type class_method<Self, R, T...> = (self: Self, T...) -> R
type map<V, K = string> = {
[K]: V
}
type lambda<T...> = (f: (T...) -> ()) -> ()
type map_functions = {
len: () -> number,
len_keys: () -> number,
len_values: () -> number,
for_each: lambda<string, string>
}
--------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------
type SHELL = {
SYSTEM: {
DESKTOP_ENV: string,
DEVICENAME: string,
USERNAME: string,
HOSTNAME: string,
REALNAME: string,
PLATFORM: string,
DISTRO: string
},
ENV: {
VAR: (string) -> string?,
VARS: {string},
SET_VAR: (K: string, V: string) -> (),
CURRENT_DIR: {
FILE_NAME: string,
},
},
PROCESS: {
EXIT_STATUS: string,
EXIT_STATUS_CHANGED: lambda<()>
},
CONFIG: {
EXTRA_COLOR: boolean,
VERBOSE: boolean
},
PROMPT: string,
INFO: string,
TERMINATE: () -> ()
}
--------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------
type color<T> = (string) -> T
type colors = {
RED: color<string>,
ORANGE: color<string>,
YELLOW: color<string>,
GREEN: color<string>,
BLUE: color<string>,
PURPLE: color<string>
}
type text_style = {
STYLE: {
BACKGROUND: colors,
FOREGROUND: colors
}
}
type TERMINAL = {
TEXT: text_style
}
--------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------
type command_input = string | command | command_spawn | (command_arg & command_spawn)
type command_arg = {arg: (string) -> command_arg & command_spawn}
type command_args = {args: ({string}) -> command_spawn}
type command_spawn = {spawn: () -> boolean}
type command_builder = {
new: (string) -> command
}
type command = {
arg: (string) -> command_arg & command_spawn,
} & command_args & command_spawn
--------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------
type alias = typeof(setmetatable({} :: alias_properties, {} :: alias_constructor))
type alias_properties = {}
type alias_init = (string, command_input) -> alias
type alias_constructor = class_constructor<alias_constructor, alias_init, {
map: (map<command_input>) -> map_functions,
Remove: class_method<alias, nil>
}>
--------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------
export type Alias = alias
--------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------
local Alias = {} :: alias_constructor
Alias.__index = Alias
local SHELL = {} :: SHELL
local TERMINAL = {} :: TERMINAL
local Command = {} :: command_builder
local username = TERMINAL.TEXT.GREEN(SHELL.SYSTEM.USERNAME)
local hostname = SHELL.SYSTEM.HOSTNAME
SHELL.PROMPT = `{username}@{hostname} λ `
local command_builder = Command.new("yt-dlp")
.arg('--format')
.arg('"bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]"')
.arg('-S')
.arg('vcodec:h264,res,acodec:opus')
local command_builder_array = Command.new("yt-dlp").args({
"--format";
'"bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]"';
'-S';
'vcodec:h264,res,acodec:opus'
})
local aliases = Alias.map({
["weather"] = "curl wttr.in",
["yt-dlp"] = command_builder_array
})
local weather_curl = Alias.new("weather", "curl wttr.in")