123 lines
3.9 KiB
Python
123 lines
3.9 KiB
Python
import config
|
|
import utilities_script as utilities
|
|
import os
|
|
import praxis_logging
|
|
praxis_logger_obj = praxis_logging.praxis_logger()
|
|
praxis_logger_obj.init(os.path.basename(__file__))
|
|
praxis_logger_obj.log("\n -Starting Logs: " + os.path.basename(__file__))
|
|
|
|
class Chyron_Module():
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.chyron_computedString = ""
|
|
self.chyron_items:list = []
|
|
|
|
def main(self, rightNow_ = "Chill Stream"):
|
|
self.addItem(
|
|
"RightNow",
|
|
"► Now: ",
|
|
rightNow_)
|
|
self.addItem(
|
|
"WeekDays",
|
|
"► Weekdays: ",
|
|
"Daily Streams @ 12pm Noon EST")
|
|
self.addItem(
|
|
"FriSat",
|
|
"► Friday & Saturday: ",
|
|
"FFxiv (Express Delivery Raid Team) @ 7pm EST")
|
|
self.addItem(
|
|
"Commands",
|
|
"► Commands: ",
|
|
"!animal, !climateclock, !discord, !lights, !page, !roll")
|
|
self.addItem(
|
|
"Website",
|
|
"► Want to read about my various projects? visit: ",
|
|
"TheCuriousNerd.com")
|
|
self.addItem(
|
|
"Follow",
|
|
"► ",
|
|
"If you like what you see, hit that follow button to see more!")
|
|
self.addItem(
|
|
"Discord",
|
|
"► Want to join our discord? type \" !d \" in chat to get the link or visit: ",
|
|
"discord.io/thecuriousnerd")
|
|
|
|
def chyron_stringUpdater(self):
|
|
newString = ""
|
|
for c in self.chyron_items:
|
|
c.item_stringUpdater()
|
|
newString = newString + c.itemComputedString
|
|
for x in range(config.chyronListSpaceCount):
|
|
newString = newString + " "
|
|
self.chyron_computedString = newString
|
|
return newString
|
|
|
|
def addItem(self, name, title, content):
|
|
newItem:ChyronItem = ChyronItem()
|
|
newItem.setupItem(name, title, content)
|
|
self.chyron_items.append(newItem)
|
|
|
|
def removeItem(self, name):
|
|
for c in self.chyron_items:
|
|
if c.itemName == name:
|
|
self.chyron_items.remove(c)
|
|
|
|
def updateChyronFile(self):
|
|
dir = utilities.get_dir("stream_sources")
|
|
script_dir = os.path.dirname(__file__) #<-- absolute dir the script is in
|
|
relative_path = "stream_sources/chyron.txt"
|
|
real_file_path = os.path.join(script_dir, relative_path)
|
|
|
|
file = open(real_file_path, "wb")
|
|
chyron = self.chyron_stringUpdater().encode("utf8")
|
|
file.write(chyron)
|
|
file.close
|
|
|
|
def getChyronFile(self):
|
|
dir = utilities.get_dir("stream_sources")
|
|
script_dir = os.path.dirname(__file__) #<-- absolute dir the script is in
|
|
relative_path = "stream_sources/chyron.txt"
|
|
real_file_path = os.path.join(script_dir, relative_path)
|
|
|
|
file = open(real_file_path, "rb")
|
|
text = file.read()
|
|
#praxis_logger_obj.log(text)
|
|
file.close
|
|
return text
|
|
|
|
|
|
class ChyronItem():
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.itemName = ""
|
|
|
|
self.includeTitle = True
|
|
self.itemTitle = ""
|
|
self.itemContent = ""
|
|
|
|
self.itemComputedString = ""
|
|
|
|
def setupItem(self, name, title, content):
|
|
praxis_logger_obj.log("\nSetting up Item {", name,"}[", title, content, "]")
|
|
self.itemName = name
|
|
self.itemTitle = title
|
|
self.itemContent = content
|
|
|
|
def item_stringUpdater(self):
|
|
newString = ""
|
|
if self.includeTitle == True:
|
|
newString = newString + self.itemTitle
|
|
newString = newString + self.itemContent
|
|
self.itemComputedString = newString
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
testModule = Chyron_Module()
|
|
testModule.main()
|
|
testModule.chyron_stringUpdater()
|
|
|
|
test = testModule.chyron_computedString + "<<<|"
|
|
praxis_logger_obj.log(test)
|
|
|
|
testModule.updateChyronFile() |