You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sigonasr2 823fb72d34 Add road tiles 2 years ago
C++/scripts Shop sell features implemented 2 years ago
assets Add road tiles 2 years ago
test Dynamic Map transitions now completed 2 years ago
utils Initial commit 2 years ago
C++ProjectTemplate House collision shenanigans 2 years ago
C++ProjectTemplate.data Added arrows and extra menu alignments 2 years ago
C++ProjectTemplate.html Web build is caught up 2 years ago
C++ProjectTemplate.js Added arrows and extra menu alignments 2 years ago
C++ProjectTemplate.wasm Added arrows and extra menu alignments 2 years ago
README.md Initial commit 2 years ago
SeasonI.code-workspace Setup rolling counter stuff 2 years ago
SeasonI.h Fix centering of camera and a bug that occurs when unequipping items from the equip menu while the inventory cursor is hovering over the last inventory item slot 2 years ago
animation.h Setup subanimation system 2 years ago
battle.h Saving of game data prototype 2 years ago
battleproperty.h More tests added 2 years ago
buildtemplate.html Initial commit 2 years ago
cutscene.h Loading files menu transitions to game after loading 2 years ago
defines.h Loading files menu transitions to game after loading 2 years ago
effect.h Enemy spoils drop 2 years ago
encounters.h Fixed a segfault with the ally selection system. Implemented battle properties into battle turns 2 years ago
entity.cpp Saving of game data prototype 2 years ago
entity.h Fix centering of camera and a bug that occurs when unequipping items from the equip menu while the inventory cursor is hovering over the last inventory item slot 2 years ago
flags.h Shop sell features implemented 2 years ago
ideas An item that is selected for equipping during battle gets equipped and used 2 years ago
item.h Saving of game data prototype 2 years ago
layers.h Add new map layer for supporting ground tiles 2 years ago
main.cpp House collision shenanigans 2 years ago
map.h Add new map layer for supporting ground tiles 2 years ago
object.cpp Saving/loading files works fine and handling objects 2 years ago
object.h House collision shenanigans 2 years ago
particle.h Enemy spoils drop 2 years ago
pixelGameEngine.h Display a message while targeting indicating what the targeting's for 2 years ago
references.h Syntax for dialog options in message boxes 2 years ago
save0 House collision shenanigans 2 years ago
sig Implement status menu display 2 years ago
soundwaveEngine.h Include basic terrain map to start off. 2 years ago
splash.h Include basic terrain map to start off. 2 years ago
states.h Load and read data from save file for load file screen 2 years ago
tiles.h Finalized the external splitting of files 2 years ago
trigger.cpp Implement map teleport triggers on map 2 years ago
trigger.h Dynamic Map transitions now completed 2 years ago

README.md

This repository contains general build scripts and pipelines for all languages that I incorporate in my projects. The goal is to provide an easy retrieval and update system for the project. Each script will be a shell script containing the following template:

    #Short description about what I do
    #Language[Folder]
    # #The script's code goes in here.
    # rm -Rf out/*
    # javac -Xlint:unchecked -cp ${PROJECT_DIR}/.. -d ${OUT_DIR} ${PROJECT_DIR}/*.java
    # printf "\n\n\nRunning Program...\n\n"
    # cd $OUT_DIR
    # java ${MAIN_CLASS} "$@"
    # ../scripts/clean.sh
    

Each language will be in the following structure:

    -<Language>
    --<scripts>
    ---[script files.sh]

The sig script will display by default any scripts in the scripts folder, therefore when creating a project, copy over the scripts folder of the desired language into your project then the sig script handles the rest appropriately. If your project requires multiple languages and build setups, then you can use the sig2 command, which has an additional parameter to specify the language when running it. When setting up a multi-language setup, you'll just copy the entire folder to include the programming language itself. So a multi-language project structure may look something like this:

    -C
    --scripts
    ---build.sh
    ---clean.sh
    ---make.sh
    -Java
    --scripts
    ---build.sh
    ---clean.sh
    ---jar.sh