Skip to content

Instantly share code, notes, and snippets.

@Mattie
Last active December 21, 2021 04:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mattie/14dd12060186f56bc34675393aaf929b to your computer and use it in GitHub Desktop.
Save Mattie/14dd12060186f56bc34675393aaf929b to your computer and use it in GitHub Desktop.
Put a random screenshot in my Star Citizen splash screen
# Replace the StarCitizen\LIVE\EasyAntiCheat\SplashScreen.png file with a random picture from the folder StarCitizen\LIVE\ScreenShots
import os
import random
import shutil
import datetime
from PIL import Image
# constants
# the folder where the screenshots are (your path will be different than mine, edit it)
SCREENSHOTS_FOLDER = "C:\\Program Files\\Roberts Space Industries\\SC\\StarCitizen\\StarCitizen\\LIVE\\ScreenShots"
# the folder where the new splash screen will be (your path will be different than mine, edit it)
SPLASH_FOLDER = "C:\\Program Files\\Roberts Space Industries\\SC\\StarCitizen\\StarCitizen\\LIVE\\EasyAntiCheat"
# the file where the new splash screen will be
SPLASH_FILE = "SplashScreen.png"
# the size of the new splash screen
SPLASH_SIZE = (800, 450)
# this function will resize and crop the image to fit the splash screen
def resize_and_crop(image, size, crop_type='middle'):
"""
Resize and crop an image to fit the specified size.
args:
image: Image - The image being resized and cropped.
size: tuple(int) - The output size of the image, in (width, height).
crop_type: str - The way to crop the image. See the PIL.Image.crop() method
returns:
Image - The resized and cropped image.
"""
# calculate the ratio of the new image to the old image
ratio = min(size[0] / image.size[0], size[1] / image.size[1])
# print the ratio
print("Ratio: " + str(ratio))
# the dimensions of the new image
new_dimensions = (int(image.size[0] * ratio), int(image.size[1] * ratio))
# print the new dimensions
print("New dimensions: " + str(new_dimensions))
# create a new image that is the size of the splash screen
new_image = Image.new("RGB", size)
# resize the image
image = image.resize(new_dimensions, Image.ANTIALIAS)
# find the middle of the image
if crop_type == 'top':
# crop the image from the top
box = (0, 0, image.size[0], size[1])
elif crop_type == 'middle':
# crop the image from the middle
box = (0, 0, size[0], size[1])
elif crop_type == 'bottom':
# crop the image from the bottom
box = (0, image.size[1] - size[1], image.size[0], image.size[1])
else:
raise ValueError('ERROR: crop_type must be top, middle or bottom')
# crop the image
image = image.crop(box)
# paste the image onto the new image
new_image.paste(image, ((size[0] - image.size[0]) // 2, (size[1] - image.size[1]) // 2))
# save the image to the current directory for debugging
#new_image.save(os.path.join(os.getcwd(), 'debug_splash.png'))
# return the new image
return new_image
# method to get the list of screenshots
def get_screenshots():
# get the list of screenshots
screenshots = os.listdir(SCREENSHOTS_FOLDER)
# return the list of screenshots
return screenshots
# method to get a random screenshot
def get_random_screenshot():
# get the list of screenshots
screenshots = get_screenshots()
# get a random screenshot
random_screenshot = random.choice(screenshots)
# return the random screenshot
return random_screenshot
# method to backup the original splash screen
def backup_splash_screen():
# get the path to the splash screen
splash_path = os.path.join(SPLASH_FOLDER, SPLASH_FILE)
# get the path to the backup splash screen, with today's date and time as a suffix
backup_splash_path = os.path.join(SPLASH_FOLDER, "SplashScreen_" + str(datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")) + ".png")
# copy the splash screen to the backup splash screen
shutil.copyfile(splash_path, backup_splash_path)
# print the backup splash screen path
print(backup_splash_path)
# main method
def main():
# get the random screenshot
random_screenshot = get_random_screenshot()
# print the random screenshot and say what we're doing
print("Random screenshot: " + random_screenshot)
print("Replacing splash screen with random screenshot...")
# get the path to the random screenshot
random_screenshot_path = os.path.join(SCREENSHOTS_FOLDER, random_screenshot)
# get the path to the splash screen
splash_path = os.path.join(SPLASH_FOLDER, SPLASH_FILE)
#backup the splash screen
backup_splash_screen()
# resize and crop the random screenshot
random_screenshot_image = resize_and_crop(Image.open(random_screenshot_path), SPLASH_SIZE)
# save the random screenshot
random_screenshot_image.save(splash_path)
# print the splash screen path
print(splash_path)
# we're done
print("Done!")
# run the main method
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment