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.
 
 
 
Nic0Nic0Nii dca53a3df0 Native mosaic PGE fragment shader implementation. Co-authored-by: sigonasr2 <sigonasr2@gmail.com> 3 months ago
C++/scripts Add example shader changes 3 months ago
assets Add example shader changes 3 months ago
utils Add example shader changes 3 months ago
C++ProjectTemplate Add example shader changes 3 months ago
C++ProjectTemplate.data Add example shader changes 3 months ago
C++ProjectTemplate.html Add example shader changes 3 months ago
C++ProjectTemplate.js Native mosaic PGE fragment shader implementation. Co-authored-by: sigonasr2 <sigonasr2@gmail.com> 3 months ago
C++ProjectTemplate.wasm Native mosaic PGE fragment shader implementation. Co-authored-by: sigonasr2 <sigonasr2@gmail.com> 3 months ago
README.md Add example shader changes 3 months ago
buildtemplate.html Add example shader changes 3 months ago
dirtblock.png Add example shader changes 3 months ago
main.cpp Native mosaic PGE fragment shader implementation. Co-authored-by: sigonasr2 <sigonasr2@gmail.com> 3 months ago
pixelGameEngine.cpp Add example shader changes 3 months ago
pixelGameEngine.h Native mosaic PGE fragment shader implementation. Co-authored-by: sigonasr2 <sigonasr2@gmail.com> 3 months ago
pixelGameEngine_wasm.o Native mosaic PGE fragment shader implementation. Co-authored-by: sigonasr2 <sigonasr2@gmail.com> 3 months ago
sig Add example shader changes 3 months 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