This repository was archived by the owner on Apr 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTH.py
174 lines (138 loc) · 6.69 KB
/
HTH.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
###-------------------------------###
# HT Helper V0.8 - Logrythmic24 #
###-------------------------------###
#This tool is used to create commands for Hatenatool by Pbsds
#Kinda pointless but its meant to be a simple skill test project
#Hatenatools link:
#cool art!!
print("""
██╗ ██╗████████╗ ██╗ ██╗███████╗██╗ ██████╗ ███████╗██████╗
██║ ██║╚══██╔══╝ ██║ ██║██╔════╝██║ ██╔══██╗██╔════╝██╔══██╗
███████║ ██║ ███████║█████╗ ██║ ██████╔╝█████╗ ██████╔╝
██╔══██║ ██║ ██╔══██║██╔══╝ ██║ ██╔═══╝ ██╔══╝ ██╔══██╗
██║ ██║ ██║ ██║ ██║███████╗███████╗██║ ███████╗██║ ██║
╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚══════╝╚═╝ ╚═╝
HT Helper by Logrythmic24
Version: 0.8A
This tool is to help create commands for Hatenatools by Pbsds
HT HELPER WILL NOT PROCESS FILES
""")
#set each mode to false to begin
htPPM = False
htUGO = False
htNTFT = False
#Get inputs from user
pyVer = "python"
fileType = input("Resource File Type: ")
#strip the "." if it was added by the user - This is just to keep the below supported file type list smaller
fileType = fileType.lstrip(".")
#Decide what switches should be displayed and set htScript based on file type - Prepare for IF Statment nightmare!
#-----------PPM---------------------------------------------------
if fileType.lower() in ["ppm", "flipnote"]:
print("Flipnote PPM File")
print("")
print("-t: Extracts the thumbnail to the file <Output>")
print("-f: Extracts the frame(s) to <Output>")
print("-s: Dumps the sound files to the folder <Output>")
print("-S: Same as mode -s, but will also dump the raw sound data files")
print("-e: Exports the flipnote to an MKV with minimal transcoding")
print("-E: Same as -e, but will encode the video as lossless H.265")
print("-m: Prints out the metadata. Can also write it to <output> which also") #This was before I learned about the """ trick
print(" supports unicode charactes.")
print("""
""")
htScript = "PPM.py"
htFlag = input("Mode: ")
if "-" not in htFlag:
htFlag = "-" + htFlag #make sure that the - is in front of the mode
else:
pass
htPPM = True
#---------------UGO-----------------------------------------------
elif fileType.lower() in ["ugo", "ugoxml"]:
print("""UGOMenu File
Convert UGO files to UGOXML or the other way around.
When converting UGO to UGOXML any embeded files will go to a folder named
"UGOXML-[Filename] Embeded"
Please include file extentions in your name in/outputs!
""")
htScript = "UGO.py"
htUGO = True
#---------------NTFT----------------------------------------------
elif fileType.lower() in ["ntft", "ntft"]:
print("NTFT Image File")
print("")
htScript = "NTFT.py"
htNTFT = True
#------------Unknown----------------------------------------------
else:
print("Unsupported File Type")
exit(1)
#checking for the Frame flag, If present prompt the user for the input
if htPPM == True:
if htFlag.lower() in ["-f"]:
print("""Frame extraction:
Set the amount of frames you want to extract, you can leave the field
blank to extract all frames
""")
htFrameFlag = True
while True:
htFrame = input("Frames to extract: ")
if not htFrame:
htFrame = 0 # If the input is blank, set htFrame to 0
break
elif htFrame.isdigit():
htFrame = int(htFrame)
break
else:
print("Invalid input. Please enter a number.")
#htFrame = input("Frames to extract: ")
else:
htFrameFlag = False
#check for export flag, prompt for export option if present
if htPPM == True:
if htFlag.lower() in ["-e"]:
print("""Export:
--speed N: force a specific flipnote speed (N = flipnote speed 1 to 8)
--scale N: upscale the frames N times
Replace N with a number!
""")
htExportFlag = True
htExportOption = input("Option Mode: ")
else:
htExportFlag = False
#Prompt for NTFT size
if htNTFT == True:
#if fileType.lower() in ["ntft"]: -Dont think I need this anymore, commenting out just in case
htNtftmode = True
print("""NTFT Image converstion:
convert a NTFT to PNG or the other way around.
if the Output isn't specified it will be set to the Input with an another extension
The NTFT file contain only the colordata, so it's up to the user to find or
store the resolution of the image to convert a NTFT file to a image.
32x32 is the normal resolution for button icons in UGO files.
Please include file extentions in your name in/outputs!
""")
htNtftW = input("NTFT Width: ")
htNtftH = input("NTFT Height: ")
#else:
#htNtftmode = False -These go with "if filetype"
#Now ask for inputs and outputs
htPath = input("PATH To File: ")
htOutput = input("Output File: ")
#Pick the script
#[Moved to above]
#Make the magic happen - Probs a better way of doing this...
if htUGO == True:
print(pyVer + " " + htScript + " " + htPath + " " + htOutput)
elif htNTFT == True:
print(pyVer + " " + htScript + " " + htPath + " " + htOutput + " " + htNtftW + " " + htNtftH)
elif htFrameFlag and htFrame > 0:
htFrame = str(htFrame) #making it a string because Python wont cancat it if htFrame is an int :/
print(pyVer + " " + htScript + " " + htFlag + " " + htPath + " " + htOutput + " " + htFrame)
elif htExportFlag == True:
print(pyVer + " " + htScript + " " + htFlag + " " + htPath + " " + htOutput + " " + htExportOption)
else:
print(pyVer + " " + htScript + " " + htFlag + " " + htPath + " " + htOutput)
#Output logging - maybe for the future?
#Commands.txt