├── .gitattributes ├── .gitignore ├── README.md ├── devhelp ├── README.md ├── appinfo.json ├── build.all.sh ├── build.sh ├── ide │ └── codeblocks │ │ ├── PLocalSim.cbp │ │ └── build.all.sh ├── openShell.bat ├── run.sh └── src │ └── sampleProject.c ├── include └── pls_unwarn_unsupported_functions.h ├── install.sh ├── openShell.bat ├── scripts ├── build.library.sh ├── build.resCompiler.sh └── envvars.sh ├── sdkdata ├── common │ ├── build.local.sh │ └── run.local.sh ├── standalone │ ├── PLocalSim │ │ └── projectTemplate │ │ │ ├── appinfo.json │ │ │ └── src │ │ │ └── sampleProject.c │ └── create.project.sh ├── unix │ └── PLocalSim │ │ ├── appjs_header.js │ │ └── envvars.sh └── windows │ ├── PLocalSim │ └── envvars.sh │ └── openShell.bat ├── simdata ├── common │ ├── LICENSE.freetype.txt │ ├── LICENSE.png.txt │ ├── LICENSE.zlib.txt │ ├── images │ │ ├── backlight.png │ │ ├── body.png │ │ ├── screenshadow.png │ │ ├── scrollshadow.png │ │ ├── statusbar.png │ │ └── vibe.png │ └── systemFonts │ │ ├── Google Android License.txt │ │ ├── bitham-black.ttf │ │ ├── bitham-bold.ttf │ │ ├── bitham-light-subset.ttf │ │ ├── bitham-light.ttf │ │ ├── bitham-medium-numbers.ttf │ │ ├── droid-serif-bold.ttf │ │ ├── gothic-bold.ttf │ │ ├── gothic.ttf │ │ ├── roboto-bold.ttf │ │ └── roboto-condensed.ttf ├── unix │ ├── XMLHttpRequest.js │ └── server.js └── windows │ ├── SDL2.dll │ ├── SDL2_image.dll │ ├── SDL2_ttf.dll │ ├── libfreetype-6.dll │ ├── libpng16-16.dll │ └── zlib1.dll └── src ├── SDL_gfx ├── SDL_gfxBlitFunc.c ├── SDL_gfxBlitFunc.h ├── SDL_gfxPrimitives.c ├── SDL_gfxPrimitives.h ├── SDL_gfxPrimitives_font.h ├── SDL_rotozoom.c ├── SDL_rotozoom.h └── disclaimer.txt ├── additional └── strftime.c ├── js_server ├── lib │ ├── XMLHttpRequest.js │ └── localStorage.js └── server.js ├── jsmn ├── jsmn.c └── jsmn.h ├── local ├── accel_tap.c ├── actionbar.c ├── animation.c ├── app_message.c ├── app_sync.c ├── battery.c ├── bitmap.c ├── bluetooth.c ├── buttons.c ├── dictionary.c ├── draw.c ├── dummy │ └── src │ │ └── resource_ids.auto.h ├── font.c ├── globals.h ├── hardwareOutput.c ├── impl_pebble.h ├── layer.c ├── main.c ├── math.c ├── pebble_os.c ├── persistent_storage.c ├── render.c ├── scrolllayer.c ├── simdata.c ├── timer.c ├── watchinfo.c └── window.c └── resourceCompiler ├── main.c └── resCompiler.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/README.md -------------------------------------------------------------------------------- /devhelp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/devhelp/README.md -------------------------------------------------------------------------------- /devhelp/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/devhelp/appinfo.json -------------------------------------------------------------------------------- /devhelp/build.all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/devhelp/build.all.sh -------------------------------------------------------------------------------- /devhelp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/devhelp/build.sh -------------------------------------------------------------------------------- /devhelp/ide/codeblocks/PLocalSim.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/devhelp/ide/codeblocks/PLocalSim.cbp -------------------------------------------------------------------------------- /devhelp/ide/codeblocks/build.all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/devhelp/ide/codeblocks/build.all.sh -------------------------------------------------------------------------------- /devhelp/openShell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/devhelp/openShell.bat -------------------------------------------------------------------------------- /devhelp/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/devhelp/run.sh -------------------------------------------------------------------------------- /devhelp/src/sampleProject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/devhelp/src/sampleProject.c -------------------------------------------------------------------------------- /include/pls_unwarn_unsupported_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/include/pls_unwarn_unsupported_functions.h -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/install.sh -------------------------------------------------------------------------------- /openShell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/openShell.bat -------------------------------------------------------------------------------- /scripts/build.library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/scripts/build.library.sh -------------------------------------------------------------------------------- /scripts/build.resCompiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/scripts/build.resCompiler.sh -------------------------------------------------------------------------------- /scripts/envvars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/scripts/envvars.sh -------------------------------------------------------------------------------- /sdkdata/common/build.local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/sdkdata/common/build.local.sh -------------------------------------------------------------------------------- /sdkdata/common/run.local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/sdkdata/common/run.local.sh -------------------------------------------------------------------------------- /sdkdata/standalone/PLocalSim/projectTemplate/appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/sdkdata/standalone/PLocalSim/projectTemplate/appinfo.json -------------------------------------------------------------------------------- /sdkdata/standalone/PLocalSim/projectTemplate/src/sampleProject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/sdkdata/standalone/PLocalSim/projectTemplate/src/sampleProject.c -------------------------------------------------------------------------------- /sdkdata/standalone/create.project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/sdkdata/standalone/create.project.sh -------------------------------------------------------------------------------- /sdkdata/unix/PLocalSim/appjs_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/sdkdata/unix/PLocalSim/appjs_header.js -------------------------------------------------------------------------------- /sdkdata/unix/PLocalSim/envvars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/sdkdata/unix/PLocalSim/envvars.sh -------------------------------------------------------------------------------- /sdkdata/windows/PLocalSim/envvars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/sdkdata/windows/PLocalSim/envvars.sh -------------------------------------------------------------------------------- /sdkdata/windows/openShell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/sdkdata/windows/openShell.bat -------------------------------------------------------------------------------- /simdata/common/LICENSE.freetype.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/LICENSE.freetype.txt -------------------------------------------------------------------------------- /simdata/common/LICENSE.png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/LICENSE.png.txt -------------------------------------------------------------------------------- /simdata/common/LICENSE.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/LICENSE.zlib.txt -------------------------------------------------------------------------------- /simdata/common/images/backlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/images/backlight.png -------------------------------------------------------------------------------- /simdata/common/images/body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/images/body.png -------------------------------------------------------------------------------- /simdata/common/images/screenshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/images/screenshadow.png -------------------------------------------------------------------------------- /simdata/common/images/scrollshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/images/scrollshadow.png -------------------------------------------------------------------------------- /simdata/common/images/statusbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/images/statusbar.png -------------------------------------------------------------------------------- /simdata/common/images/vibe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/images/vibe.png -------------------------------------------------------------------------------- /simdata/common/systemFonts/Google Android License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/systemFonts/Google Android License.txt -------------------------------------------------------------------------------- /simdata/common/systemFonts/bitham-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/systemFonts/bitham-black.ttf -------------------------------------------------------------------------------- /simdata/common/systemFonts/bitham-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/systemFonts/bitham-bold.ttf -------------------------------------------------------------------------------- /simdata/common/systemFonts/bitham-light-subset.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/systemFonts/bitham-light-subset.ttf -------------------------------------------------------------------------------- /simdata/common/systemFonts/bitham-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/systemFonts/bitham-light.ttf -------------------------------------------------------------------------------- /simdata/common/systemFonts/bitham-medium-numbers.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/systemFonts/bitham-medium-numbers.ttf -------------------------------------------------------------------------------- /simdata/common/systemFonts/droid-serif-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/systemFonts/droid-serif-bold.ttf -------------------------------------------------------------------------------- /simdata/common/systemFonts/gothic-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/systemFonts/gothic-bold.ttf -------------------------------------------------------------------------------- /simdata/common/systemFonts/gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/systemFonts/gothic.ttf -------------------------------------------------------------------------------- /simdata/common/systemFonts/roboto-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/systemFonts/roboto-bold.ttf -------------------------------------------------------------------------------- /simdata/common/systemFonts/roboto-condensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/common/systemFonts/roboto-condensed.ttf -------------------------------------------------------------------------------- /simdata/unix/XMLHttpRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/unix/XMLHttpRequest.js -------------------------------------------------------------------------------- /simdata/unix/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/unix/server.js -------------------------------------------------------------------------------- /simdata/windows/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/windows/SDL2.dll -------------------------------------------------------------------------------- /simdata/windows/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/windows/SDL2_image.dll -------------------------------------------------------------------------------- /simdata/windows/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/windows/SDL2_ttf.dll -------------------------------------------------------------------------------- /simdata/windows/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/windows/libfreetype-6.dll -------------------------------------------------------------------------------- /simdata/windows/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/windows/libpng16-16.dll -------------------------------------------------------------------------------- /simdata/windows/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/simdata/windows/zlib1.dll -------------------------------------------------------------------------------- /src/SDL_gfx/SDL_gfxBlitFunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/SDL_gfx/SDL_gfxBlitFunc.c -------------------------------------------------------------------------------- /src/SDL_gfx/SDL_gfxBlitFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/SDL_gfx/SDL_gfxBlitFunc.h -------------------------------------------------------------------------------- /src/SDL_gfx/SDL_gfxPrimitives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/SDL_gfx/SDL_gfxPrimitives.c -------------------------------------------------------------------------------- /src/SDL_gfx/SDL_gfxPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/SDL_gfx/SDL_gfxPrimitives.h -------------------------------------------------------------------------------- /src/SDL_gfx/SDL_gfxPrimitives_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/SDL_gfx/SDL_gfxPrimitives_font.h -------------------------------------------------------------------------------- /src/SDL_gfx/SDL_rotozoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/SDL_gfx/SDL_rotozoom.c -------------------------------------------------------------------------------- /src/SDL_gfx/SDL_rotozoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/SDL_gfx/SDL_rotozoom.h -------------------------------------------------------------------------------- /src/SDL_gfx/disclaimer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/SDL_gfx/disclaimer.txt -------------------------------------------------------------------------------- /src/additional/strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/additional/strftime.c -------------------------------------------------------------------------------- /src/js_server/lib/XMLHttpRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/js_server/lib/XMLHttpRequest.js -------------------------------------------------------------------------------- /src/js_server/lib/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/js_server/lib/localStorage.js -------------------------------------------------------------------------------- /src/js_server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/js_server/server.js -------------------------------------------------------------------------------- /src/jsmn/jsmn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/jsmn/jsmn.c -------------------------------------------------------------------------------- /src/jsmn/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/jsmn/jsmn.h -------------------------------------------------------------------------------- /src/local/accel_tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/accel_tap.c -------------------------------------------------------------------------------- /src/local/actionbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/actionbar.c -------------------------------------------------------------------------------- /src/local/animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/animation.c -------------------------------------------------------------------------------- /src/local/app_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/app_message.c -------------------------------------------------------------------------------- /src/local/app_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/app_sync.c -------------------------------------------------------------------------------- /src/local/battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/battery.c -------------------------------------------------------------------------------- /src/local/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/bitmap.c -------------------------------------------------------------------------------- /src/local/bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/bluetooth.c -------------------------------------------------------------------------------- /src/local/buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/buttons.c -------------------------------------------------------------------------------- /src/local/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/dictionary.c -------------------------------------------------------------------------------- /src/local/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/draw.c -------------------------------------------------------------------------------- /src/local/dummy/src/resource_ids.auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/dummy/src/resource_ids.auto.h -------------------------------------------------------------------------------- /src/local/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/font.c -------------------------------------------------------------------------------- /src/local/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/globals.h -------------------------------------------------------------------------------- /src/local/hardwareOutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/hardwareOutput.c -------------------------------------------------------------------------------- /src/local/impl_pebble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/impl_pebble.h -------------------------------------------------------------------------------- /src/local/layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/layer.c -------------------------------------------------------------------------------- /src/local/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/main.c -------------------------------------------------------------------------------- /src/local/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/math.c -------------------------------------------------------------------------------- /src/local/pebble_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/pebble_os.c -------------------------------------------------------------------------------- /src/local/persistent_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/persistent_storage.c -------------------------------------------------------------------------------- /src/local/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/render.c -------------------------------------------------------------------------------- /src/local/scrolllayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/scrolllayer.c -------------------------------------------------------------------------------- /src/local/simdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/simdata.c -------------------------------------------------------------------------------- /src/local/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/timer.c -------------------------------------------------------------------------------- /src/local/watchinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/watchinfo.c -------------------------------------------------------------------------------- /src/local/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/local/window.c -------------------------------------------------------------------------------- /src/resourceCompiler/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/resourceCompiler/main.c -------------------------------------------------------------------------------- /src/resourceCompiler/resCompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helco/PLocalSim/HEAD/src/resourceCompiler/resCompiler.py --------------------------------------------------------------------------------