Название | Жанр | Экран | Заметки | Скриншоты |
---|---|---|---|---|
Balloon Fight | Platformer | |||
Battle City | Shooter | |||
Bubble Bobble | Platformer | |||
Cabal | Shooter | |||
CJ's Elephant Antics | Platfo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
__version__ = "1.0" | |
__author__ = "infval" | |
import argparse | |
from pathlib import Path | |
from struct import unpack, pack |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import argparse | |
from pathlib import Path | |
parser = argparse.ArgumentParser(description='Translate characters') | |
parser.add_argument('input', help='input file') | |
parser.add_argument('table', help='table file, "A=Z\\nB=2\\nK=M"') | |
parser.add_argument('output', help='output file') | |
parser.add_argument('-e', '--encoding', default="utf-8", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
Converts between QD and FDS disk images | |
""" | |
import struct | |
def create_fds_header(side_count): | |
return b"FDS\x1A" + bytes([side_count & 0xFF]) + bytes(11) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local player1_x = 0x8DDC | |
local player1_y = 0x8DE4 | |
local player2_x = 0x8E5C | |
local player2_y = 0x8E64 | |
local player_x = player1_x | |
local player_y = player1_y | |
local step = 1 | |
local prev_keys = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import io | |
import struct | |
from pathlib import Path | |
def decompress(inpt, artAddress): | |
inpt.seek(artAddress) | |
output = io.BytesIO() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import re | |
import pathlib | |
from struct import unpack | |
pathlib.Path('./EXTRACTED').mkdir(exist_ok=True) | |
with open("SLPM_552.63", "rb") as f: | |
bexe = f.read() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
Dirty color fix for 'Blaster Master Zero 2' [Switch] | |
OpenGL ONLY! | |
Tested version: yuzu 228 | |
""" | |
import sys | |
# \src\video_core\renderer_opengl\renderer_opengl.cpp | |
shader_text = b"void main() {\n color = vec4(texture(color_texture, frag_tex_coord).rgb, 1.0f);\n}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import winreg | |
sub_key = r"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\WordWheelQuery" | |
history = [] | |
with winreg.OpenKey(winreg.HKEY_CURRENT_USER, sub_key) as key: | |
order, regtype = winreg.QueryValueEx(key, "MRUListEx") | |
ind = 0 | |
while order[ind] != 0xFF: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import os | |
import sys | |
import math | |
import argparse | |
from collections import OrderedDict | |
from PIL import Image, ImageDraw |