├── .gitignore ├── .gitmodules ├── LICENSE ├── config.js ├── javacompiler ├── AST.js ├── AnnotationRef.js ├── Block.js ├── Clazz.js ├── Data.js ├── Doxyfile ├── DoxygenLayout.xml ├── Enum.js ├── Expression.js ├── Field.js ├── ID ├── ImportDeclaration.js ├── Interface.js ├── Log.js ├── Method.js ├── Ref.js ├── Resources.js ├── Statement.js ├── StdError.js ├── Type.js ├── TypeRef.js ├── Unit.js ├── cppImage.js ├── cppSprite.js ├── cppSpriteRLE.js ├── cppXML.js ├── cppwriter.js ├── desktop │ ├── begin.cpp │ └── end.cpp ├── examples │ ├── Examples.md │ ├── Intervalometer.md │ ├── SinCosineExample.md │ └── images │ │ └── SineAndCosineGraphicalRepresentation.png ├── femto │ ├── CPP.java │ ├── Cookie.java │ ├── File.java │ ├── FrameRef.java │ ├── Game.java │ ├── Image.java │ ├── Mode15.js │ ├── Prompt.java │ ├── Sprite.java │ ├── State.java │ ├── StateMachine.java │ ├── StringPair.java │ ├── TileSet.java │ ├── XMLNode.java │ ├── font │ │ ├── Adventurer.font │ │ ├── Donut.font │ │ ├── Dragon.font │ │ ├── Font3x3.font │ │ ├── Font3x5.font │ │ ├── Font5x7.font │ │ ├── FontC64.font │ │ ├── FontMonkey.font │ │ ├── Karateka.font │ │ ├── Koubit.font │ │ ├── Mini.font │ │ ├── Runes.font │ │ ├── TIC80.font │ │ ├── Tight.font │ │ ├── Tiny.font │ │ ├── ZXSpec.font │ │ └── font.js │ ├── hardware │ │ ├── EEPROM.java │ │ ├── EXT.java │ │ ├── IRQ.java │ │ ├── LPC11U68.java │ │ ├── ST7775.java │ │ └── Timer.java │ ├── input │ │ ├── Button.java │ │ └── ButtonListener.java │ ├── math │ │ ├── Matrix4.java │ │ └── Vector4.java │ ├── mode │ │ ├── Direct.java │ │ ├── Direct4BPP.java │ │ ├── HiRes16Color.java │ │ ├── LowRes16Color.java │ │ ├── LowRes256Color.java │ │ ├── LowResHiColor.js │ │ └── ScreenMode.java │ ├── palette │ │ ├── A64.pal │ │ ├── Aap16.pal │ │ ├── AndrewKensler16.pal │ │ ├── Arne16.pal │ │ ├── Arq16.pal │ │ ├── Aurora.pal │ │ ├── Bubblegum16.pal │ │ ├── Castpixel16.pal │ │ ├── CdBac.pal │ │ ├── Cgarne.pal │ │ ├── Chip16.pal │ │ ├── Chromatic16.pal │ │ ├── Cm16.pal │ │ ├── Colodore.pal │ │ ├── ColorGraphicsAdapter.pal │ │ ├── Commodore64.pal │ │ ├── CommodoreVic20.pal │ │ ├── CopperTech.pal │ │ ├── Crimso11.pal │ │ ├── Cthulhu16.pal │ │ ├── Dawnbringer16.pal │ │ ├── Dinoknight16.pal │ │ ├── Drazile16.pal │ │ ├── EasterIsland.pal │ │ ├── Endesga16.pal │ │ ├── EndesgaSoft16.pal │ │ ├── Enos16.pal │ │ ├── ErogeCopper.pal │ │ ├── Europa16.pal │ │ ├── Fantasy16.pal │ │ ├── Flyguy16.pal │ │ ├── Froste16.pal │ │ ├── Fun16.pal │ │ ├── FztEthereal16.pal │ │ ├── GrungeShift.pal │ │ ├── IslandJoy16.pal │ │ ├── JmpJapaneseMachinePalette.pal │ │ ├── Jw64.pal │ │ ├── MacintoshIi.pal │ │ ├── Master16.pal │ │ ├── MicrosoftWindows.pal │ │ ├── Miloslav.pal │ │ ├── Na16.pal │ │ ├── Naji16.pal │ │ ├── Night16.pal │ │ ├── Optimum.pal │ │ ├── Pavanz16.pal │ │ ├── PeachyPop16.pal │ │ ├── Pico8.pal │ │ ├── Psygnosia.pal │ │ ├── RPlace.pal │ │ ├── RiscOs.pal │ │ ├── Simplejpc16.pal │ │ ├── SteamLords.pal │ │ ├── Super1716.pal │ │ ├── Sweetie16.pal │ │ ├── Taffy16.pal │ │ ├── ThomsonM05.pal │ │ ├── Thug16.pal │ │ ├── UltimaViAtariSt.pal │ │ ├── UltimaViSharpX68000.pal │ │ └── Zxarne52.pal │ └── sound │ │ ├── Mixer.java │ │ ├── Procedural.java │ │ └── Stream.java ├── getLocation.js ├── index.js ├── java │ ├── lang │ │ ├── Array.js │ │ ├── Exception.java │ │ ├── Integer.java │ │ ├── Math.java │ │ ├── Object.js │ │ ├── Runnable.java │ │ ├── Runtime.java │ │ ├── String.js │ │ ├── System.java │ │ ├── Thread.java │ │ ├── boolean.js │ │ ├── byte.js │ │ ├── char.js │ │ ├── double.js │ │ ├── float.js │ │ ├── int.js │ │ ├── long.js │ │ ├── pointer.js │ │ ├── short.js │ │ ├── ubyte.js │ │ ├── uint.js │ │ ├── ulong.js │ │ ├── ushort.js │ │ └── void.js │ └── util │ │ ├── Arrays.java │ │ ├── Date.java │ │ └── Random.java ├── package-lock.json ├── package.json ├── palParser.js ├── pokitto │ ├── annotations │ │ ├── up_femto.uc_CPP.js │ │ └── up_femto.up_hardware.uc_IRQ.js │ ├── begin-32bit.cpp │ ├── begin.cpp │ ├── end.cpp │ ├── femto │ │ ├── Image │ │ │ ├── __blit_4bpp.cpp │ │ │ ├── __blit_8bpp.cpp │ │ │ └── __directblit_4bpp.cpp │ │ ├── Sprite │ │ │ ├── __blit_4bpp.cpp │ │ │ └── __blit_8bpp.cpp │ │ └── mode │ │ │ ├── HiRes16Color │ │ │ ├── clear.cpp │ │ │ ├── command.cpp │ │ │ ├── drawHLine.cpp │ │ │ ├── drawVLine.cpp │ │ │ └── flush.cpp │ │ │ ├── LowRes16Color │ │ │ ├── drawHLine.cpp │ │ │ └── flush.cpp │ │ │ └── LowRes256Color │ │ │ ├── drawHLine.cpp │ │ │ ├── flush.cpp │ │ │ └── flush.cpp~ │ ├── includes │ │ ├── FixedPoints │ │ │ ├── FixedPoints.h │ │ │ ├── FixedPoints │ │ │ │ ├── Details.h │ │ │ │ ├── FixedPoints.h │ │ │ │ ├── SFixed.h │ │ │ │ ├── SFixedBase.h │ │ │ │ ├── SFixedFreeFunctions.h │ │ │ │ ├── SFixedMemberFunctions.h │ │ │ │ ├── UFixed.h │ │ │ │ ├── UFixedBase.h │ │ │ │ ├── UFixedFreeFunctions.h │ │ │ │ ├── UFixedMemberFunctions.h │ │ │ │ └── Utils.h │ │ │ ├── FixedPointsCommon.h │ │ │ └── FixedPointsCommon │ │ │ │ ├── FixedPointsCommon.h │ │ │ │ ├── SFixedCommon.h │ │ │ │ └── UFixedCommon.h │ │ ├── arm.i │ │ ├── lcd.i │ │ ├── lpc.i │ │ └── pvcopy.i │ ├── java │ │ ├── lang │ │ │ └── Math │ │ │ │ ├── atan2.cpp │ │ │ │ └── cos.cpp │ │ └── util │ │ │ └── Arrays │ │ │ └── fill.cpp │ ├── libs │ │ ├── FemtoLibs │ │ │ ├── File │ │ │ │ ├── ChaN │ │ │ │ │ ├── ccsbcs.cpp │ │ │ │ │ ├── diskio.cpp │ │ │ │ │ ├── ff.cpp │ │ │ │ │ ├── ffconf.h │ │ │ │ │ ├── file_diskio.h │ │ │ │ │ ├── file_integer.h │ │ │ │ │ ├── fileff.h │ │ │ │ │ └── minilpc.h │ │ │ │ ├── File │ │ │ │ ├── NOPFile.h │ │ │ │ ├── SDFSFile.h │ │ │ │ ├── SIMFile.h │ │ │ │ └── YAPFSFile.h │ │ │ ├── LibLog │ │ │ │ └── LibLog │ │ │ └── MemOps │ │ │ │ ├── MemOps │ │ │ │ ├── MemOpsCortexM.h │ │ │ │ └── MemOpsCpp.h │ │ ├── SystemInit.s │ │ ├── SystemInit_bas.s │ │ ├── lcd.s │ │ ├── pvcopy.s │ │ ├── spi.s │ │ └── startup.cpp │ ├── link.ld │ └── link_bas.ld ├── spriteParser.js ├── test.java ├── test.txt └── vfs.js ├── node_modules ├── .bin │ ├── crc32 │ ├── isogit │ ├── printj │ └── sha.js ├── async-lock │ ├── AUTHORS │ ├── History.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── lib │ │ └── index.js │ └── package.json ├── base64-js │ ├── README.md │ ├── lib │ │ └── b64.js │ ├── package.json │ └── test │ │ └── runner.js ├── bops │ ├── README.md │ ├── copy.js │ ├── create.js │ ├── dist │ │ └── bops.js │ ├── from.js │ ├── index.js │ ├── is.js │ ├── join.js │ ├── package.json │ ├── read.js │ ├── subarray.js │ ├── test │ │ ├── copy.js │ │ ├── create.js │ │ ├── from.js │ │ ├── index.js │ │ ├── is.js │ │ ├── join.js │ │ ├── read.js │ │ ├── subarray.js │ │ ├── to.js │ │ └── write.js │ ├── to.js │ ├── typedarray │ │ ├── copy.js │ │ ├── create.js │ │ ├── from.js │ │ ├── is.js │ │ ├── join.js │ │ ├── mapped.js │ │ ├── read.js │ │ ├── subarray.js │ │ ├── to.js │ │ └── write.js │ └── write.js ├── chevrotain │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── NOTICE.txt │ ├── diagrams │ │ ├── README.md │ │ ├── diagrams.css │ │ ├── src │ │ │ ├── diagrams_behavior.js │ │ │ ├── diagrams_builder.js │ │ │ ├── diagrams_serializer.js │ │ │ └── main.js │ │ └── vendor │ │ │ └── railroad-diagrams.js │ ├── lib │ │ ├── chevrotain.d.ts │ │ ├── chevrotain.js │ │ ├── chevrotain.min.js │ │ └── src │ │ │ ├── api.js │ │ │ ├── diagrams │ │ │ └── render_public.js │ │ │ ├── generate │ │ │ ├── generate.js │ │ │ └── generate_public.js │ │ │ ├── lang │ │ │ └── lang_extensions.js │ │ │ ├── parse │ │ │ ├── constants.js │ │ │ ├── cst │ │ │ │ ├── cst.js │ │ │ │ └── cst_visitor.js │ │ │ ├── errors_public.js │ │ │ ├── exceptions_public.js │ │ │ ├── gast_builder.js │ │ │ ├── grammar │ │ │ │ ├── checks.js │ │ │ │ ├── first.js │ │ │ │ ├── follow.js │ │ │ │ ├── gast │ │ │ │ │ ├── gast.js │ │ │ │ │ ├── gast_public.js │ │ │ │ │ ├── gast_resolver_public.js │ │ │ │ │ └── gast_visitor_public.js │ │ │ │ ├── interpreter.js │ │ │ │ ├── keys.js │ │ │ │ ├── lookahead.js │ │ │ │ ├── resolver.js │ │ │ │ └── rest.js │ │ │ └── parser │ │ │ │ ├── parser.js │ │ │ │ └── traits │ │ │ │ ├── context_assist.js │ │ │ │ ├── error_handler.js │ │ │ │ ├── lexer_adapter.js │ │ │ │ ├── looksahead.js │ │ │ │ ├── parser_traits.js │ │ │ │ ├── recognizer_api.js │ │ │ │ ├── recognizer_engine.js │ │ │ │ ├── recoverable.js │ │ │ │ └── tree_builder.js │ │ │ ├── scan │ │ │ ├── lexer.js │ │ │ ├── lexer_errors_public.js │ │ │ ├── lexer_public.js │ │ │ ├── reg_exp.js │ │ │ ├── tokens.js │ │ │ ├── tokens_constants.js │ │ │ └── tokens_public.js │ │ │ ├── text │ │ │ └── range.js │ │ │ ├── utils │ │ │ └── utils.js │ │ │ └── version.js │ ├── package.json │ └── readme.md ├── clean-git-ref │ ├── README.md │ ├── lib │ │ └── index.js │ └── package.json ├── crc-32 │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── crc32.njs │ ├── crc32.js │ ├── package.json │ └── types │ │ ├── tsconfig.json │ │ └── tslint.json ├── decompress-response │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── diff-lines │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── diff │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── diff.js │ │ └── diff.min.js │ ├── lib │ │ ├── convert │ │ │ ├── dmp.js │ │ │ └── xml.js │ │ ├── diff │ │ │ ├── array.js │ │ │ ├── base.js │ │ │ ├── character.js │ │ │ ├── css.js │ │ │ ├── json.js │ │ │ ├── line.js │ │ │ ├── sentence.js │ │ │ └── word.js │ │ ├── index.js │ │ ├── patch │ │ │ ├── apply.js │ │ │ ├── create.js │ │ │ ├── merge.js │ │ │ └── parse.js │ │ └── util │ │ │ ├── array.js │ │ │ ├── distance-iterator.js │ │ │ └── params.js │ ├── package.json │ ├── release-notes.md │ ├── runtime.js │ └── yarn.lock ├── exit-on-epipe │ ├── LICENSE │ ├── README.md │ ├── exit-on-epipe.js │ └── package.json ├── fatfs │ ├── README.md │ ├── cache.js │ ├── chains.js │ ├── dir.js │ ├── helpers.js │ ├── img_volume.js │ ├── index.js │ ├── issue_28.js │ ├── make_sample.sh │ ├── package.json │ ├── structs.js │ ├── t_timing.js │ ├── test.js │ └── vol.js ├── fifolock │ ├── README.md │ ├── examples │ │ ├── custom_wrapper.js │ │ └── from_readme.js │ ├── index.js │ ├── package.json │ └── test.js ├── git-apply-delta │ ├── .travis.yml │ ├── README.md │ ├── index.js │ ├── package.json │ └── test.js ├── globalyzer │ ├── license │ ├── package.json │ ├── readme.md │ └── src │ │ ├── .DS_Store │ │ └── index.js ├── globrex │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── ignore │ ├── CHANGELOG.md │ ├── LICENSE-MIT │ ├── README.md │ ├── index.js │ ├── legacy.js │ └── package.json ├── inherits │ ├── LICENSE │ ├── README.md │ ├── inherits.js │ ├── inherits_browser.js │ └── package.json ├── isomorphic-git │ ├── LICENSE.md │ ├── README.md │ ├── cli.js │ ├── dist │ │ ├── browser-tests.json │ │ ├── bundle.umd.min.js │ │ ├── for-future │ │ │ └── isomorphic-git │ │ │ │ ├── index.js │ │ │ │ └── internal-apis.js │ │ ├── for-node │ │ │ └── isomorphic-git │ │ │ │ ├── index.js │ │ │ │ └── internal-apis.js │ │ ├── internal.umd.min.js │ │ └── size_report.html │ └── package.json ├── java-parser │ ├── LICENSE │ ├── README.md │ ├── node_modules │ │ ├── chevrotain │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── diagrams │ │ │ │ ├── README.md │ │ │ │ ├── diagrams.css │ │ │ │ ├── src │ │ │ │ │ ├── diagrams_behavior.js │ │ │ │ │ ├── diagrams_builder.js │ │ │ │ │ ├── diagrams_serializer.js │ │ │ │ │ └── main.js │ │ │ │ └── vendor │ │ │ │ │ └── railroad-diagrams.js │ │ │ ├── lib │ │ │ │ ├── chevrotain.js │ │ │ │ ├── chevrotain.min.js │ │ │ │ └── src │ │ │ │ │ ├── api.js │ │ │ │ │ ├── diagrams │ │ │ │ │ └── render_public.js │ │ │ │ │ ├── generate │ │ │ │ │ ├── generate.js │ │ │ │ │ └── generate_public.js │ │ │ │ │ ├── lang │ │ │ │ │ └── lang_extensions.js │ │ │ │ │ ├── parse │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── cst │ │ │ │ │ │ ├── cst.js │ │ │ │ │ │ └── cst_visitor.js │ │ │ │ │ ├── errors_public.js │ │ │ │ │ ├── exceptions_public.js │ │ │ │ │ ├── gast_builder.js │ │ │ │ │ ├── grammar │ │ │ │ │ │ ├── checks.js │ │ │ │ │ │ ├── first.js │ │ │ │ │ │ ├── follow.js │ │ │ │ │ │ ├── gast │ │ │ │ │ │ │ ├── gast.js │ │ │ │ │ │ │ ├── gast_public.js │ │ │ │ │ │ │ ├── gast_resolver_public.js │ │ │ │ │ │ │ └── gast_visitor_public.js │ │ │ │ │ │ ├── interpreter.js │ │ │ │ │ │ ├── keys.js │ │ │ │ │ │ ├── lookahead.js │ │ │ │ │ │ ├── resolver.js │ │ │ │ │ │ └── rest.js │ │ │ │ │ └── parser │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ └── traits │ │ │ │ │ │ ├── context_assist.js │ │ │ │ │ │ ├── error_handler.js │ │ │ │ │ │ ├── lexer_adapter.js │ │ │ │ │ │ ├── looksahead.js │ │ │ │ │ │ ├── parser_traits.js │ │ │ │ │ │ ├── recognizer_api.js │ │ │ │ │ │ ├── recognizer_engine.js │ │ │ │ │ │ ├── recoverable.js │ │ │ │ │ │ └── tree_builder.js │ │ │ │ │ ├── scan │ │ │ │ │ ├── lexer.js │ │ │ │ │ ├── lexer_errors_public.js │ │ │ │ │ ├── lexer_public.js │ │ │ │ │ ├── reg_exp.js │ │ │ │ │ ├── tokens.js │ │ │ │ │ ├── tokens_constants.js │ │ │ │ │ └── tokens_public.js │ │ │ │ │ ├── text │ │ │ │ │ └── range.js │ │ │ │ │ ├── utils │ │ │ │ │ └── utils.js │ │ │ │ │ └── version.js │ │ │ ├── package.json │ │ │ └── readme.md │ │ └── regexp-to-ast │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ └── regexp-to-ast.js │ │ │ └── package.json │ ├── package.json │ ├── scripts │ │ ├── clone-samples.js │ │ ├── gen-diagrams.js │ │ ├── parse-samples.js │ │ └── single-sample-runner.js │ ├── src │ │ ├── index.js │ │ ├── lexer.js │ │ ├── parser.js │ │ ├── productions │ │ │ ├── arrays.js │ │ │ ├── blocks-and-statements.js │ │ │ ├── classes.js │ │ │ ├── expressions.js │ │ │ ├── interfaces.js │ │ │ ├── lexical-structure.js │ │ │ ├── names.js │ │ │ ├── packages-and-modules.js │ │ │ └── types-values-and-variables.js │ │ └── tokens.js │ └── test │ │ └── samples-spec.js ├── marky │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── marky.js │ │ └── marky.min.js │ ├── lib │ │ ├── marky.browser.cjs.js │ │ ├── marky.browser.es.js │ │ ├── marky.cjs.js │ │ └── marky.es.js │ └── package.json ├── mimic-response │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── minimist │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ └── parse.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── all_bool.js │ │ ├── bool.js │ │ ├── dash.js │ │ ├── default_bool.js │ │ ├── dotted.js │ │ ├── kv_short.js │ │ ├── long.js │ │ ├── num.js │ │ ├── parse.js │ │ ├── parse_modified.js │ │ ├── short.js │ │ ├── stop_early.js │ │ ├── unknown.js │ │ └── whitespace.js ├── minimisted │ ├── .bmp.yml │ ├── .editorconfig │ ├── .npmignore │ ├── README.md │ ├── circle.yml │ ├── index.js │ ├── package.json │ ├── test.js │ └── yarn.lock ├── once │ ├── LICENSE │ ├── README.md │ ├── once.js │ └── package.json ├── pako │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── pako.js │ │ ├── pako.min.js │ │ ├── pako_deflate.js │ │ ├── pako_deflate.min.js │ │ ├── pako_inflate.js │ │ └── pako_inflate.min.js │ ├── index.js │ ├── lib │ │ ├── deflate.js │ │ ├── inflate.js │ │ ├── utils │ │ │ ├── common.js │ │ │ └── strings.js │ │ └── zlib │ │ │ ├── README │ │ │ ├── adler32.js │ │ │ ├── constants.js │ │ │ ├── crc32.js │ │ │ ├── deflate.js │ │ │ ├── gzheader.js │ │ │ ├── inffast.js │ │ │ ├── inflate.js │ │ │ ├── inftrees.js │ │ │ ├── messages.js │ │ │ ├── trees.js │ │ │ └── zstream.js │ └── package.json ├── pify │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── printj │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── printj.njs │ ├── dist │ │ ├── LICENSE │ │ ├── printj.js │ │ └── printj.min.js │ ├── package.json │ ├── printj.js │ └── types │ │ ├── tsconfig.json │ │ └── tslint.json ├── readable-stream │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── README.md │ ├── errors-browser.js │ ├── errors.js │ ├── experimentalWarning.js │ ├── lib │ │ ├── _stream_duplex.js │ │ ├── _stream_passthrough.js │ │ ├── _stream_readable.js │ │ ├── _stream_transform.js │ │ ├── _stream_writable.js │ │ └── internal │ │ │ └── streams │ │ │ ├── async_iterator.js │ │ │ ├── buffer_list.js │ │ │ ├── destroy.js │ │ │ ├── end-of-stream.js │ │ │ ├── pipeline.js │ │ │ ├── state.js │ │ │ ├── stream-browser.js │ │ │ └── stream.js │ ├── package.json │ ├── readable-browser.js │ └── readable.js ├── regexp-to-ast │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── api.d.ts │ ├── lib │ │ └── regexp-to-ast.js │ └── package.json ├── safe-buffer │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── sha.js │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bin.js │ ├── hash.js │ ├── index.js │ ├── package.json │ ├── sha.js │ ├── sha1.js │ ├── sha224.js │ ├── sha256.js │ ├── sha384.js │ ├── sha512.js │ └── test │ │ ├── hash.js │ │ ├── test.js │ │ └── vectors.js ├── simple-concat │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package.json │ └── test │ │ └── basic.js ├── simple-get │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── string_decoder │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── string_decoder.js │ └── package.json ├── struct-fu │ ├── README.md │ ├── lib.js │ ├── package.json │ └── test.js ├── to-utf8 │ ├── README.md │ ├── index.js │ ├── package.json │ └── test.js ├── util-deprecate │ ├── History.md │ ├── LICENSE │ ├── README.md │ ├── browser.js │ ├── node.js │ └── package.json ├── varint │ ├── README.md │ ├── decode.js │ ├── encode.js │ ├── index.js │ ├── package.json │ └── test.js ├── wrappy │ ├── LICENSE │ ├── README.md │ ├── package.json │ └── wrappy.js └── xok │ ├── LICENSE.md │ ├── README.md │ ├── index.js │ ├── package.json │ └── test.js ├── package-lock.json ├── package.json ├── plugins ├── Backtrace.css ├── Backtrace.js ├── Chrome.css ├── ProjectsListView.css ├── Search.css ├── Tree.js ├── TreeView.css ├── asm.js ├── beautify.js ├── beep.css ├── beep.js ├── binview.js ├── breakemu.js ├── build.js ├── buildbin.js ├── buildcpp.js ├── buildjava.js ├── buildld.js ├── buildpng.js ├── buildwav.js ├── cpp.js ├── dbg.css ├── dbg.js ├── dbgsim.js ├── dir.css ├── dir.js ├── disasm.js ├── discord.js ├── edit.js ├── elf.js ├── exec.js ├── find.js ├── git.js ├── help.js ├── html.js ├── image.css ├── image.js ├── imageview.css ├── imageview.html ├── init.css ├── init.js ├── java.js ├── javascript.js ├── json.js ├── log.css ├── log.js ├── lsp.js ├── lz4.js ├── meta.js ├── package-lock.json ├── patches.js ├── profiler.css ├── profiler.js ├── project.js ├── python.js ├── release.js ├── runcitra.js ├── runemu.js ├── runsim.js ├── scope.js ├── sdcard.js ├── sound.js ├── tabs.css ├── tabs.js ├── tags.js ├── text.js ├── tracker.css ├── tracker.js ├── update.js ├── vscode.js ├── watch.js └── xml.js ├── projects ├── Hello CPP │ ├── My_settings.h │ ├── Smile.h │ ├── Smile.png │ ├── main.cpp │ └── project.json ├── Hello Java │ ├── Hello Java.bin │ ├── Hello Java.elf │ ├── Main.java │ ├── images │ │ └── Pattern.png │ ├── project.json │ ├── sounds │ │ ├── DogBark1.wav │ │ ├── DogBark2.wav │ │ ├── DogBark3.wav │ │ └── hope.raw │ └── sprites │ │ ├── Dog.json │ │ └── dog.png ├── Hello MicroPython │ ├── My_settings.h │ ├── main.mpy │ ├── main.py │ ├── micropython │ │ ├── UartSerialPrint.cpp │ │ ├── frozen_mpy.c │ │ ├── genhdr │ │ │ ├── qstrdefs.generated.h │ │ │ └── qstrdefs.preprocessed.h │ │ ├── libmicropython.a │ │ ├── main.cpp │ │ ├── pre-build.js │ │ └── sprite.py │ └── project.json └── P-Type │ ├── My_settings.h │ ├── P-Type.bin │ ├── P-Type.elf │ ├── StateMachine.h │ ├── entities │ ├── Bullet.cpp │ ├── Bullet.h │ ├── Enemy.cpp │ ├── Enemy.h │ ├── Entity.h │ ├── Player.cpp │ └── Player.h │ ├── global.h │ ├── images │ ├── gameover.h │ └── gameover.png │ ├── main.cpp │ ├── maps.h │ ├── maps │ ├── Level1.tmx │ ├── UI-sheet.h │ ├── UI-sheet.png │ ├── calciumtrice.h │ ├── calciumtrice.png │ ├── dungeon tileset calciumtrice instructions.txt │ └── uimap.tmx │ ├── music │ ├── dream.beep │ └── drm.raw │ ├── project.json │ ├── scripts │ ├── SpriteConverter.js │ └── TilemapConverter.js │ ├── sfx │ ├── Boop.h │ └── Boop.wav │ ├── sprites.cpp │ ├── sprites.h │ ├── sprites │ ├── Dude.bin │ ├── Dude.h │ ├── Dude.json │ ├── Dude.png │ ├── bulletSprite.bin │ ├── bulletSprite.h │ ├── bulletSprite.json │ ├── bulletSprite.png │ ├── bullets.aseprite │ ├── enemySprite.aseprite │ ├── enemySprite.bin │ ├── enemySprite.h │ ├── enemySprite.json │ ├── enemySprite.png │ ├── heads.aseprite │ ├── heads.bin │ ├── heads.h │ ├── heads.json │ ├── heads.png │ ├── ships.aseprite │ ├── ships.bin │ ├── ships.h │ ├── ships.json │ ├── ships.png │ ├── start.aseprite │ ├── start.bin │ ├── start.h │ ├── start.json │ └── start.png │ └── states │ ├── State.h │ ├── StateGame.cpp │ ├── StateGame.h │ ├── StateGameOver.cpp │ ├── StateGameOver.h │ ├── StateIntro.cpp │ └── StateIntro.h ├── templates ├── 1-C++ Game │ ├── My_settings.h │ ├── Smile.h │ ├── Smile.png │ ├── main.cpp │ └── project.json ├── 2-C++ Tiles+Sprites Game │ ├── My_settings.h │ ├── Smile.h │ ├── Smile.png │ ├── main.cpp │ ├── maps.h │ ├── maps │ │ ├── basictiles_2.h │ │ ├── basictiles_2.png │ │ ├── gardenPath.tmx │ │ ├── magecity_1.h │ │ └── magecity_1.png │ ├── project.json │ ├── scripts │ │ ├── SpriteConverter.js │ │ └── TilemapConverter.js │ ├── sprites.cpp │ ├── sprites.h │ └── sprites │ │ ├── Dude.bin │ │ ├── Dude.h │ │ ├── Dude.json │ │ └── Dude.png ├── 3-MicroPython │ ├── My_settings.h │ ├── main.py │ ├── micropython │ │ ├── UartSerialPrint.cpp │ │ ├── genhdr │ │ │ ├── qstrdefs.generated.h │ │ │ └── qstrdefs.preprocessed.h │ │ ├── libmicropython.a │ │ ├── main.cpp │ │ ├── pre-build.js │ │ └── sprite.py │ └── project.json ├── 4-Java Game │ ├── Dog.json │ ├── Main.java │ ├── Pattern.png │ ├── __flags.json │ ├── dog.png │ └── project.json ├── 5-MiniLib Project │ ├── PokittoMini.h │ ├── SystemInit.s │ ├── main.cpp │ ├── project.json │ └── startup.cpp └── 6-Bitsy Project │ ├── Editor.html │ ├── LICENSE.md │ ├── font │ ├── google-material-icons.woff2 │ ├── google-nunito-latin.woff2 │ ├── google-nunito-latinext.woff2 │ └── google-nunito-vietnamese.woff2 │ ├── game.html │ ├── icons │ ├── bitsy.h │ ├── bitsy.hqx │ ├── bitsy.icns │ ├── bitsy.ico │ └── bitsy.png │ ├── image │ ├── bitsy-itch-cover.h │ ├── bitsy-itch-cover.png │ ├── bitsy.icns │ ├── cat.h │ ├── cat.png │ ├── cat.svg │ ├── cat2.h │ ├── cat2.png │ ├── cat5.h │ └── cat5.png │ ├── project.json │ ├── script │ ├── color_picker.js │ ├── converter.js │ ├── dialog_editor.js │ ├── editor.js │ ├── editor.js~ │ ├── engine │ │ ├── bitsy.js │ │ ├── color_util.js │ │ ├── dialog.js │ │ ├── font.js │ │ ├── renderer.js │ │ ├── script.js │ │ └── transition.js │ ├── event_manager.js │ ├── explorer.js │ ├── exporter.js │ ├── generated │ │ └── resources.js │ ├── gif.js │ ├── inventory.js │ ├── localization.js │ ├── paint.js │ ├── palette.js │ ├── room.js │ ├── room_markers.js │ └── util.js │ ├── source │ ├── Direct.h │ ├── Functions.hpp │ ├── Node.hpp │ ├── PokittoMini.h │ ├── SystemInit.s │ ├── bitsy.h │ ├── bitsyTypes.h │ ├── compat.h │ ├── main.cpp │ ├── print.hpp │ └── startup.cpp │ └── style │ ├── colorPickerStyle.css │ ├── editorAnimations.css │ ├── editorButtons.css │ ├── editorColors.css │ ├── editorLanguageStyles.css │ ├── editorStyle.css │ ├── googleMaterialIcons.css │ ├── googleNunito.css │ ├── markerToolStyle.css │ └── responsiveStyle.css └── www ├── Chart.css ├── Chart.js ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2 ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2 ├── ace.js ├── beepbox ├── 2_3 │ ├── beepbox_editor.js │ ├── beepbox_editor.min.js │ ├── beepbox_offline.html │ └── index.html ├── app.yaml ├── apple-touch-icon.png ├── beepbox_editor.js ├── beepbox_offline_template.html ├── browserconfig.xml ├── competition │ ├── index.html │ └── player │ │ └── index.html ├── editor.html ├── favicon.ico ├── icon_32.png ├── icon_maskable_192.png ├── icon_shadow_192.png ├── icon_windows_150.png ├── index.html ├── index_debug.html ├── manifest.webmanifest ├── player │ └── index.html ├── robots.txt ├── service_worker.js └── synth_example.html ├── blank.img ├── capture.gif ├── cmd.js ├── doc.js ├── docs ├── annotated.html ├── annotated_dup.js ├── bc_s.png ├── bdwn.png ├── classes.html ├── classfemto_1_1Cookie-members.html ├── classfemto_1_1Cookie.html ├── classfemto_1_1Cookie.js ├── classfemto_1_1FrameRef-members.html ├── classfemto_1_1FrameRef.html ├── classfemto_1_1FrameRef.png ├── classfemto_1_1FrameRef__coll__graph.md5 ├── classfemto_1_1FrameRef__coll__graph.png ├── classfemto_1_1FrameRef__inherit__graph.md5 ├── classfemto_1_1FrameRef__inherit__graph.png ├── classfemto_1_1Game-members.html ├── classfemto_1_1Game.html ├── classfemto_1_1Game.png ├── classfemto_1_1Game__coll__graph.md5 ├── classfemto_1_1Game__coll__graph.png ├── classfemto_1_1Game__inherit__graph.md5 ├── classfemto_1_1Game__inherit__graph.png ├── classfemto_1_1Image-members.html ├── classfemto_1_1Image.html ├── classfemto_1_1Image.png ├── classfemto_1_1Image__coll__graph.md5 ├── classfemto_1_1Image__coll__graph.png ├── classfemto_1_1Image__inherit__graph.md5 ├── classfemto_1_1Image__inherit__graph.png ├── classfemto_1_1Prompt-members.html ├── classfemto_1_1Prompt.html ├── classfemto_1_1Prompt.js ├── classfemto_1_1Sprite-members.html ├── classfemto_1_1Sprite.html ├── classfemto_1_1Sprite.js ├── classfemto_1_1Sprite.png ├── classfemto_1_1Sprite__coll__graph.md5 ├── classfemto_1_1Sprite__coll__graph.png ├── classfemto_1_1Sprite__inherit__graph.md5 ├── classfemto_1_1Sprite__inherit__graph.png ├── classfemto_1_1State-members.html ├── classfemto_1_1State.html ├── classfemto_1_1State.js ├── classfemto_1_1StateMachine-members.html ├── classfemto_1_1StateMachine.html ├── classfemto_1_1StateMachine.js ├── classfemto_1_1StateMachine.png ├── classfemto_1_1StateMachine__coll__graph.md5 ├── classfemto_1_1StateMachine__coll__graph.png ├── classfemto_1_1StateMachine__inherit__graph.md5 ├── classfemto_1_1StateMachine__inherit__graph.png ├── classfemto_1_1State__inherit__graph.md5 ├── classfemto_1_1State__inherit__graph.png ├── classfemto_1_1StringPair-members.html ├── classfemto_1_1StringPair.html ├── classfemto_1_1StringPair.js ├── classfemto_1_1TileSet-members.html ├── classfemto_1_1TileSet.html ├── classfemto_1_1TileSet.js ├── classfemto_1_1TileSet.png ├── classfemto_1_1XMLNode-members.html ├── classfemto_1_1XMLNode.html ├── classfemto_1_1XMLNode__coll__graph.md5 ├── classfemto_1_1XMLNode__coll__graph.png ├── classfemto_1_1hardware_1_1EEPROM-members.html ├── classfemto_1_1hardware_1_1EEPROM.html ├── classfemto_1_1hardware_1_1EXT-members.html ├── classfemto_1_1hardware_1_1EXT.html ├── classfemto_1_1hardware_1_1EXT.js ├── classfemto_1_1hardware_1_1EXT__coll__graph.md5 ├── classfemto_1_1hardware_1_1EXT__coll__graph.png ├── classfemto_1_1hardware_1_1LPC11U68-members.html ├── classfemto_1_1hardware_1_1LPC11U68.html ├── classfemto_1_1hardware_1_1ST7775-members.html ├── classfemto_1_1hardware_1_1ST7775.html ├── classfemto_1_1hardware_1_1Timer-members.html ├── classfemto_1_1hardware_1_1Timer.html ├── classfemto_1_1input_1_1Button-members.html ├── classfemto_1_1input_1_1Button.html ├── classfemto_1_1input_1_1Button.js ├── classfemto_1_1input_1_1ButtonListener-members.html ├── classfemto_1_1input_1_1ButtonListener.html ├── classfemto_1_1input_1_1Button__coll__graph.md5 ├── classfemto_1_1input_1_1Button__coll__graph.png ├── classfemto_1_1mode_1_1Direct-members.html ├── classfemto_1_1mode_1_1Direct.html ├── classfemto_1_1mode_1_1Direct.js ├── classfemto_1_1mode_1_1Direct.png ├── classfemto_1_1mode_1_1Direct4BPP-members.html ├── classfemto_1_1mode_1_1Direct4BPP.html ├── classfemto_1_1mode_1_1Direct4BPP.js ├── classfemto_1_1mode_1_1Direct4BPP.png ├── classfemto_1_1mode_1_1Direct__coll__graph.md5 ├── classfemto_1_1mode_1_1Direct__coll__graph.png ├── classfemto_1_1mode_1_1Direct__inherit__graph.md5 ├── classfemto_1_1mode_1_1Direct__inherit__graph.png ├── classfemto_1_1mode_1_1HiRes16Color-members.html ├── classfemto_1_1mode_1_1HiRes16Color.html ├── classfemto_1_1mode_1_1HiRes16Color.js ├── classfemto_1_1mode_1_1HiRes16Color.png ├── classfemto_1_1mode_1_1HiRes16Color__coll__graph.md5 ├── classfemto_1_1mode_1_1HiRes16Color__coll__graph.png ├── classfemto_1_1mode_1_1HiRes16Color__inherit__graph.md5 ├── classfemto_1_1mode_1_1HiRes16Color__inherit__graph.png ├── classfemto_1_1mode_1_1LowRes16Color-members.html ├── classfemto_1_1mode_1_1LowRes16Color.html ├── classfemto_1_1mode_1_1LowRes16Color.js ├── classfemto_1_1mode_1_1LowRes16Color.png ├── classfemto_1_1mode_1_1LowRes256Color-members.html ├── classfemto_1_1mode_1_1LowRes256Color.html ├── classfemto_1_1mode_1_1LowRes256Color.js ├── classfemto_1_1mode_1_1LowRes256Color.png ├── classfemto_1_1mode_1_1ScreenMode-members.html ├── classfemto_1_1mode_1_1ScreenMode.html ├── classfemto_1_1mode_1_1ScreenMode.js ├── classfemto_1_1mode_1_1ScreenMode.png ├── classfemto_1_1mode_1_1ScreenMode__inherit__graph.md5 ├── classfemto_1_1mode_1_1ScreenMode__inherit__graph.png ├── classfemto_1_1sound_1_1Mixer-members.html ├── classfemto_1_1sound_1_1Mixer.html ├── classfemto_1_1sound_1_1Procedural-members.html ├── classfemto_1_1sound_1_1Procedural.html ├── classfemto_1_1sound_1_1Procedural.js ├── classfemto_1_1sound_1_1Stream-members.html ├── classfemto_1_1sound_1_1Stream.html ├── classjava_1_1lang_1_1Exception.html ├── classjava_1_1lang_1_1Integer-members.html ├── classjava_1_1lang_1_1Integer.html ├── classjava_1_1lang_1_1Math-members.html ├── classjava_1_1lang_1_1Math.html ├── classjava_1_1lang_1_1Math.png ├── classjava_1_1lang_1_1Math__coll__graph.md5 ├── classjava_1_1lang_1_1Math__coll__graph.png ├── classjava_1_1lang_1_1Math__inherit__graph.md5 ├── classjava_1_1lang_1_1Math__inherit__graph.png ├── classjava_1_1lang_1_1Runtime-members.html ├── classjava_1_1lang_1_1Runtime.html ├── classjava_1_1lang_1_1Runtime.js ├── classjava_1_1lang_1_1System-members.html ├── classjava_1_1lang_1_1System.html ├── classjava_1_1lang_1_1System.png ├── classjava_1_1lang_1_1System__coll__graph.md5 ├── classjava_1_1lang_1_1System__coll__graph.png ├── classjava_1_1lang_1_1System__inherit__graph.md5 ├── classjava_1_1lang_1_1System__inherit__graph.png ├── classjava_1_1lang_1_1Thread-members.html ├── classjava_1_1lang_1_1Thread.html ├── classjava_1_1util_1_1Arrays-members.html ├── classjava_1_1util_1_1Arrays.html ├── classjava_1_1util_1_1Arrays.png ├── classjava_1_1util_1_1Arrays__coll__graph.md5 ├── classjava_1_1util_1_1Arrays__coll__graph.png ├── classjava_1_1util_1_1Arrays__inherit__graph.md5 ├── classjava_1_1util_1_1Arrays__inherit__graph.png ├── classjava_1_1util_1_1Date-members.html ├── classjava_1_1util_1_1Date.html ├── classjava_1_1util_1_1Date.js ├── classjava_1_1util_1_1Random-members.html ├── classjava_1_1util_1_1Random.html ├── classjava_1_1util_1_1Random.js ├── classmath_1_1Matrix4-members.html ├── classmath_1_1Matrix4.html ├── classmath_1_1Vector4-members.html ├── classmath_1_1Vector4.html ├── classmath_1_1Vector4.js ├── closed.png ├── dir_394683ee05a5a8b73f942ce5209b739c.html ├── dir_4213307c79d2f7f0cce799d9630e8758.html ├── dir_55402dc12f4fd63cc385a04b37344731.html ├── dir_93c6ba7fb77bae0709fae89c9c13b44a.html ├── dir_9e4bcca2cb40c864fd8180c86147bcda.html ├── dir_a22c523b0c1cf4e2012dd30cf6faeeea.html ├── dir_d28a4824dc47e487b107a5db32ef43c4.html ├── dir_d326d3b04790499fdec3150ff145a956.html ├── dir_f2f630fadac21c5d6604541564b6f989.html ├── dir_f8ce6c25687c5aee5f04de36344302aa.html ├── doc.png ├── doxygen.css ├── doxygen.png ├── dynsections.js ├── folderclosed.png ├── folderopen.png ├── functions.html ├── functions_func.html ├── functions_vars.html ├── graph_legend.html ├── graph_legend.md5 ├── graph_legend.png ├── hierarchy.html ├── index.html ├── index.js ├── interfacefemto_1_1CPP-members.html ├── interfacefemto_1_1CPP.html ├── interfacefemto_1_1CPP.js ├── interfacefemto_1_1hardware_1_1IRQ-members.html ├── interfacefemto_1_1hardware_1_1IRQ.html ├── interfacefemto_1_1hardware_1_1IRQ.js ├── interfacejava_1_1lang_1_1Runnable-members.html ├── interfacejava_1_1lang_1_1Runnable.html ├── interfacejava_1_1lang_1_1Runnable.js ├── intervalometer.html ├── jquery.js ├── nav_f.png ├── nav_g.png ├── nav_h.png ├── navtree.css ├── navtree.js ├── navtreedata.js ├── navtreeindex0.js ├── open.png ├── pages.html ├── resize.js ├── search │ ├── all_0.html │ ├── all_0.js │ ├── all_1.html │ ├── all_1.js │ ├── all_10.html │ ├── all_10.js │ ├── all_11.html │ ├── all_11.js │ ├── all_12.html │ ├── all_12.js │ ├── all_13.html │ ├── all_13.js │ ├── all_14.html │ ├── all_14.js │ ├── all_15.html │ ├── all_15.js │ ├── all_2.html │ ├── all_2.js │ ├── all_3.html │ ├── all_3.js │ ├── all_4.html │ ├── all_4.js │ ├── all_5.html │ ├── all_5.js │ ├── all_6.html │ ├── all_6.js │ ├── all_7.html │ ├── all_7.js │ ├── all_8.html │ ├── all_8.js │ ├── all_9.html │ ├── all_9.js │ ├── all_a.html │ ├── all_a.js │ ├── all_b.html │ ├── all_b.js │ ├── all_c.html │ ├── all_c.js │ ├── all_d.html │ ├── all_d.js │ ├── all_e.html │ ├── all_e.js │ ├── all_f.html │ ├── all_f.js │ ├── classes_0.html │ ├── classes_0.js │ ├── classes_1.html │ ├── classes_1.js │ ├── classes_10.html │ ├── classes_10.js │ ├── classes_2.html │ ├── classes_2.js │ ├── classes_3.html │ ├── classes_3.js │ ├── classes_4.html │ ├── classes_4.js │ ├── classes_5.html │ ├── classes_5.js │ ├── classes_6.html │ ├── classes_6.js │ ├── classes_7.html │ ├── classes_7.js │ ├── classes_8.html │ ├── classes_8.js │ ├── classes_9.html │ ├── classes_9.js │ ├── classes_a.html │ ├── classes_a.js │ ├── classes_b.html │ ├── classes_b.js │ ├── classes_c.html │ ├── classes_c.js │ ├── classes_d.html │ ├── classes_d.js │ ├── classes_e.html │ ├── classes_e.js │ ├── classes_f.html │ ├── classes_f.js │ ├── close.png │ ├── functions_0.html │ ├── functions_0.js │ ├── functions_1.html │ ├── functions_1.js │ ├── functions_10.html │ ├── functions_10.js │ ├── functions_11.html │ ├── functions_11.js │ ├── functions_12.html │ ├── functions_12.js │ ├── functions_13.html │ ├── functions_13.js │ ├── functions_2.html │ ├── functions_2.js │ ├── functions_3.html │ ├── functions_3.js │ ├── functions_4.html │ ├── functions_4.js │ ├── functions_5.html │ ├── functions_5.js │ ├── functions_6.html │ ├── functions_6.js │ ├── functions_7.html │ ├── functions_7.js │ ├── functions_8.html │ ├── functions_8.js │ ├── functions_9.html │ ├── functions_9.js │ ├── functions_a.html │ ├── functions_a.js │ ├── functions_b.html │ ├── functions_b.js │ ├── functions_c.html │ ├── functions_c.js │ ├── functions_d.html │ ├── functions_d.js │ ├── functions_e.html │ ├── functions_e.js │ ├── functions_f.html │ ├── functions_f.js │ ├── mag_sel.png │ ├── nomatches.html │ ├── pages_0.html │ ├── pages_0.js │ ├── pages_1.html │ ├── pages_1.js │ ├── pages_2.html │ ├── pages_2.js │ ├── search.css │ ├── search.js │ ├── search_l.png │ ├── search_m.png │ ├── search_r.png │ ├── searchdata.js │ ├── variables_0.html │ ├── variables_0.js │ ├── variables_1.html │ ├── variables_1.js │ ├── variables_2.html │ ├── variables_2.js │ ├── variables_3.html │ ├── variables_3.js │ ├── variables_4.html │ ├── variables_4.js │ ├── variables_5.html │ ├── variables_5.js │ ├── variables_6.html │ ├── variables_6.js │ ├── variables_7.html │ ├── variables_7.js │ ├── variables_8.html │ ├── variables_8.js │ ├── variables_9.html │ ├── variables_9.js │ ├── variables_a.html │ ├── variables_a.js │ ├── variables_b.html │ ├── variables_b.js │ ├── variables_c.html │ └── variables_c.js ├── sincosgraphical.html ├── splitbar.png ├── sync_off.png ├── sync_on.png ├── tab_a.png ├── tab_b.png ├── tab_h.png ├── tab_s.png └── tabs.css ├── ext-language_tools.js ├── ext-preview.js ├── ext-searchbox.js ├── images ├── SineAndCosineGraphicalRepresentation.png ├── femto-icon.png ├── femto-icon2.png ├── femto-icon2.svg ├── icons │ ├── 3d.svg │ ├── actionscript.svg │ ├── advpl_include.svg │ ├── advpl_prw.svg │ ├── advpl_ptm.svg │ ├── advpl_tlpp.svg │ ├── android.svg │ ├── angular-component.svg │ ├── angular-directive.svg │ ├── angular-guard.svg │ ├── angular-pipe.svg │ ├── angular-resolver.svg │ ├── angular-service.svg │ ├── angular.svg │ ├── apiblueprint.svg │ ├── applescript.svg │ ├── appveyor.svg │ ├── arduino.svg │ ├── asciidoc.svg │ ├── assembly.svg │ ├── audio.svg │ ├── aurelia.svg │ ├── authors.svg │ ├── autohotkey.svg │ ├── autoit.svg │ ├── azure-pipelines.svg │ ├── azure.svg │ ├── babel.svg │ ├── ballerina.svg │ ├── bazel.svg │ ├── bitbucket.svg │ ├── bithound.svg │ ├── blink.svg │ ├── blink_light.svg │ ├── bower.svg │ ├── browserlist.svg │ ├── browserlist_light.svg │ ├── bucklescript.svg │ ├── buildkite.svg │ ├── c.svg │ ├── cabal.svg │ ├── cake.svg │ ├── certificate.svg │ ├── changelog.svg │ ├── circleci.svg │ ├── circleci_light.svg │ ├── clojure.svg │ ├── cloudfoundry.svg │ ├── cmake.svg │ ├── code-climate.svg │ ├── code-climate_light.svg │ ├── codecov.svg │ ├── codeowners.svg │ ├── coffee.svg │ ├── coldfusion.svg │ ├── conduct.svg │ ├── console.svg │ ├── contributing.svg │ ├── cpp.svg │ ├── credits.svg │ ├── crystal.svg │ ├── crystal_light.svg │ ├── csharp.svg │ ├── css-map.svg │ ├── css.svg │ ├── cucumber.svg │ ├── cuda.svg │ ├── d.svg │ ├── dart.svg │ ├── database.svg │ ├── diff.svg │ ├── disc.svg │ ├── django.svg │ ├── docker.svg │ ├── document.svg │ ├── dotjs.svg │ ├── drone.svg │ ├── drone_light.svg │ ├── edge.svg │ ├── editorconfig.svg │ ├── ejs.svg │ ├── elixir.svg │ ├── elm.svg │ ├── email.svg │ ├── erlang.svg │ ├── eslint.svg │ ├── exe.svg │ ├── fastlane.svg │ ├── favicon.svg │ ├── file.svg │ ├── firebase.svg │ ├── flash.svg │ ├── flow.svg │ ├── folder-android-open.svg │ ├── folder-android.svg │ ├── folder-animation-open.svg │ ├── folder-animation.svg │ ├── folder-ansible-open.svg │ ├── folder-ansible.svg │ ├── folder-api-open.svg │ ├── folder-api.svg │ ├── folder-app-open.svg │ ├── folder-app.svg │ ├── folder-archive-open.svg │ ├── folder-archive.svg │ ├── folder-audio-open.svg │ ├── folder-audio.svg │ ├── folder-aurelia-open.svg │ ├── folder-aurelia.svg │ ├── folder-aws-open.svg │ ├── folder-aws.svg │ ├── folder-batch-open.svg │ ├── folder-batch.svg │ ├── folder-benchmark-open.svg │ ├── folder-benchmark.svg │ ├── folder-bower-open.svg │ ├── folder-bower.svg │ ├── folder-ci-open.svg │ ├── folder-ci.svg │ ├── folder-circleci-open.svg │ ├── folder-circleci.svg │ ├── folder-class-open.svg │ ├── folder-class.svg │ ├── folder-client-open.svg │ ├── folder-client.svg │ ├── folder-cluster-open.svg │ ├── folder-cluster.svg │ ├── folder-command-open.svg │ ├── folder-command.svg │ ├── folder-components-open.svg │ ├── folder-components.svg │ ├── folder-config-open.svg │ ├── folder-config.svg │ ├── folder-constant-open.svg │ ├── folder-constant.svg │ ├── folder-container-open.svg │ ├── folder-container.svg │ ├── folder-content-open.svg │ ├── folder-content.svg │ ├── folder-controller-open.svg │ ├── folder-controller.svg │ ├── folder-core-open.svg │ ├── folder-core.svg │ ├── folder-coverage-open.svg │ ├── folder-coverage.svg │ ├── folder-css-open.svg │ ├── folder-css.svg │ ├── folder-custom-open.svg │ ├── folder-custom.svg │ ├── folder-database-open.svg │ ├── folder-database.svg │ ├── folder-debug-open.svg │ ├── folder-debug.svg │ ├── folder-delta-open.svg │ ├── folder-delta.svg │ ├── folder-dist-open.svg │ ├── folder-dist.svg │ ├── folder-docker-open.svg │ ├── folder-docker.svg │ ├── folder-docs-open.svg │ ├── folder-docs.svg │ ├── folder-download-open.svg │ ├── folder-download.svg │ ├── folder-dump-open.svg │ ├── folder-dump.svg │ ├── folder-environment-open.svg │ ├── folder-environment.svg │ ├── folder-error-open.svg │ ├── folder-error.svg │ ├── folder-event-open.svg │ ├── folder-event.svg │ ├── folder-examples-open.svg │ ├── folder-examples.svg │ ├── folder-expo-open.svg │ ├── folder-expo.svg │ ├── folder-export-open.svg │ ├── folder-export.svg │ ├── folder-fastlane-open.svg │ ├── folder-fastlane.svg │ ├── folder-flow-open.svg │ ├── folder-flow.svg │ ├── folder-font-open.svg │ ├── folder-font.svg │ ├── folder-functions-open.svg │ ├── folder-functions.svg │ ├── folder-generator-open.svg │ ├── folder-generator.svg │ ├── folder-git-open.svg │ ├── folder-git.svg │ ├── folder-github-open.svg │ ├── folder-github.svg │ ├── folder-gitlab-open.svg │ ├── folder-gitlab.svg │ ├── folder-global-open.svg │ ├── folder-global.svg │ ├── folder-gradle-open.svg │ ├── folder-gradle.svg │ ├── folder-graphql-open.svg │ ├── folder-graphql.svg │ ├── folder-guard-open.svg │ ├── folder-guard.svg │ ├── folder-helper-open.svg │ ├── folder-helper.svg │ ├── folder-hook-open.svg │ ├── folder-hook.svg │ ├── folder-i18n-open.svg │ ├── folder-i18n.svg │ ├── folder-images-open.svg │ ├── folder-images.svg │ ├── folder-import-open.svg │ ├── folder-import.svg │ ├── folder-include-open.svg │ ├── folder-include.svg │ ├── folder-ios-open.svg │ ├── folder-ios.svg │ ├── folder-javascript-open.svg │ ├── folder-javascript.svg │ ├── folder-jinja-open.svg │ ├── folder-jinja-open_light.svg │ ├── folder-jinja.svg │ ├── folder-jinja_light.svg │ ├── folder-job-open.svg │ ├── folder-job.svg │ ├── folder-json-open.svg │ ├── folder-json.svg │ ├── folder-keys-open.svg │ ├── folder-keys.svg │ ├── folder-kubernetes-open.svg │ ├── folder-kubernetes.svg │ ├── folder-layout-open.svg │ ├── folder-layout.svg │ ├── folder-less-open.svg │ ├── folder-less.svg │ ├── folder-lib-open.svg │ ├── folder-lib.svg │ ├── folder-log-open.svg │ ├── folder-log.svg │ ├── folder-mail-open.svg │ ├── folder-mail.svg │ ├── folder-mappings-open.svg │ ├── folder-mappings.svg │ ├── folder-markdown-open.svg │ ├── folder-markdown.svg │ ├── folder-messages-open.svg │ ├── folder-messages.svg │ ├── folder-meta-open.svg │ ├── folder-meta.svg │ ├── folder-middleware-open.svg │ ├── folder-middleware.svg │ ├── folder-mock-open.svg │ ├── folder-mock.svg │ ├── folder-ngrx-actions-open.svg │ ├── folder-ngrx-actions.svg │ ├── folder-ngrx-effects-open.svg │ ├── folder-ngrx-effects.svg │ ├── folder-ngrx-entities-open.svg │ ├── folder-ngrx-entities.svg │ ├── folder-ngrx-reducer-open.svg │ ├── folder-ngrx-reducer.svg │ ├── folder-ngrx-state-open.svg │ ├── folder-ngrx-state.svg │ ├── folder-ngrx-store-open.svg │ ├── folder-ngrx-store.svg │ ├── folder-node-open.svg │ ├── folder-node.svg │ ├── folder-nuxt-open.svg │ ├── folder-nuxt.svg │ ├── folder-open.svg │ ├── folder-other-open.svg │ ├── folder-other.svg │ ├── folder-packages-open.svg │ ├── folder-packages.svg │ ├── folder-php-open.svg │ ├── folder-php.svg │ ├── folder-phpmailer-open.svg │ ├── folder-phpmailer.svg │ ├── folder-pipe-open.svg │ ├── folder-pipe.svg │ ├── folder-plugin-open.svg │ ├── folder-plugin.svg │ ├── folder-prisma-open.svg │ ├── folder-prisma.svg │ ├── folder-private-open.svg │ ├── folder-private.svg │ ├── folder-public-open.svg │ ├── folder-public.svg │ ├── folder-python-open.svg │ ├── folder-python.svg │ ├── folder-react-components-open.svg │ ├── folder-react-components.svg │ ├── folder-redux-actions-open.svg │ ├── folder-redux-actions.svg │ ├── folder-redux-reducer-open.svg │ ├── folder-redux-reducer.svg │ ├── folder-redux-store-open.svg │ ├── folder-redux-store.svg │ ├── folder-resource-open.svg │ ├── folder-resource.svg │ ├── folder-review-open.svg │ ├── folder-review.svg │ ├── folder-root-open.svg │ ├── folder-root.svg │ ├── folder-routes-open.svg │ ├── folder-routes.svg │ ├── folder-rules-open.svg │ ├── folder-rules.svg │ ├── folder-sass-open.svg │ ├── folder-sass.svg │ ├── folder-scripts-open.svg │ ├── folder-scripts.svg │ ├── folder-secure-open.svg │ ├── folder-secure.svg │ ├── folder-server-open.svg │ ├── folder-server.svg │ ├── folder-serverless-open.svg │ ├── folder-serverless.svg │ ├── folder-shared-open.svg │ ├── folder-shared.svg │ ├── folder-src-open.svg │ ├── folder-src.svg │ ├── folder-stack-open.svg │ ├── folder-stack.svg │ ├── folder-stylus-open.svg │ ├── folder-stylus.svg │ ├── folder-sublime-open.svg │ ├── folder-sublime.svg │ ├── folder-svg-open.svg │ ├── folder-svg.svg │ ├── folder-syntax-open.svg │ ├── folder-syntax.svg │ ├── folder-tasks-open.svg │ ├── folder-tasks.svg │ ├── folder-temp-open.svg │ ├── folder-temp.svg │ ├── folder-template-open.svg │ ├── folder-template.svg │ ├── folder-test-open.svg │ ├── folder-test.svg │ ├── folder-theme-open.svg │ ├── folder-theme.svg │ ├── folder-tools-open.svg │ ├── folder-tools.svg │ ├── folder-typescript-open.svg │ ├── folder-typescript.svg │ ├── folder-upload-open.svg │ ├── folder-upload.svg │ ├── folder-utils-open.svg │ ├── folder-utils.svg │ ├── folder-video-open.svg │ ├── folder-video.svg │ ├── folder-views-open.svg │ ├── folder-views.svg │ ├── folder-vm-open.svg │ ├── folder-vm.svg │ ├── folder-vscode-open.svg │ ├── folder-vscode.svg │ ├── folder-vue-directives-open.svg │ ├── folder-vue-directives.svg │ ├── folder-vue-open.svg │ ├── folder-vue.svg │ ├── folder-vuex-store-open.svg │ ├── folder-vuex-store.svg │ ├── folder-wakatime-open.svg │ ├── folder-wakatime.svg │ ├── folder-webpack-open.svg │ ├── folder-webpack.svg │ ├── folder-wordpress-open.svg │ ├── folder-wordpress.svg │ ├── folder.svg │ ├── font.svg │ ├── fortran.svg │ ├── foxpro.svg │ ├── fsharp.svg │ ├── fusebox.svg │ ├── gatsby.svg │ ├── gcp.svg │ ├── gemfile.svg │ ├── git.svg │ ├── gitlab.svg │ ├── gitpod.svg │ ├── go-mod.svg │ ├── go.svg │ ├── go_gopher.svg │ ├── godot-assets.svg │ ├── godot.svg │ ├── gradle.svg │ ├── graphcool.svg │ ├── graphql.svg │ ├── groovy.svg │ ├── grunt.svg │ ├── gulp.svg │ ├── h.svg │ ├── hack.svg │ ├── haml.svg │ ├── handlebars.svg │ ├── haskell.svg │ ├── haxe.svg │ ├── hcl.svg │ ├── hcl_light.svg │ ├── helm.svg │ ├── heroku.svg │ ├── hpp.svg │ ├── html.svg │ ├── http.svg │ ├── i18n.svg │ ├── image.svg │ ├── ionic.svg │ ├── istanbul.svg │ ├── java.svg │ ├── javascript-map.svg │ ├── javascript.svg │ ├── jenkins.svg │ ├── jest.svg │ ├── jinja.svg │ ├── jinja_light.svg │ ├── json.svg │ ├── julia.svg │ ├── jupyter.svg │ ├── karma.svg │ ├── key.svg │ ├── kivy.svg │ ├── kl.svg │ ├── kotlin.svg │ ├── laravel.svg │ ├── less.svg │ ├── lib.svg │ ├── livescript.svg │ ├── lock.svg │ ├── log.svg │ ├── lua.svg │ ├── makefile.svg │ ├── markdown.svg │ ├── markojs.svg │ ├── mathematica.svg │ ├── matlab.svg │ ├── mdx.svg │ ├── merlin.svg │ ├── mint.svg │ ├── mjml.svg │ ├── mocha.svg │ ├── moonscript.svg │ ├── mxml.svg │ ├── nest-controller.svg │ ├── nest-decorator.svg │ ├── nest-filter.svg │ ├── nest-gateway.svg │ ├── nest-guard.svg │ ├── nest-middleware.svg │ ├── nest-module.svg │ ├── nest-pipe.svg │ ├── nest-service.svg │ ├── nest.svg │ ├── netlify.svg │ ├── ngrx-actions.svg │ ├── ngrx-effects.svg │ ├── ngrx-entity.svg │ ├── ngrx-reducer.svg │ ├── ngrx-state.svg │ ├── nim.svg │ ├── nix.svg │ ├── nodejs.svg │ ├── nodejs_alt.svg │ ├── nodemon.svg │ ├── now.svg │ ├── now_light.svg │ ├── npm.svg │ ├── nunjucks.svg │ ├── nuxt.svg │ ├── ocaml.svg │ ├── pdf.svg │ ├── percy.svg │ ├── perl.svg │ ├── php.svg │ ├── php_elephant.svg │ ├── postcss.svg │ ├── powerpoint.svg │ ├── powershell.svg │ ├── prettier.svg │ ├── prisma.svg │ ├── processing.svg │ ├── processing_light.svg │ ├── protractor.svg │ ├── pug.svg │ ├── puppet.svg │ ├── purescript.svg │ ├── python-misc.svg │ ├── python.svg │ ├── r.svg │ ├── racket.svg │ ├── raml.svg │ ├── razor.svg │ ├── react.svg │ ├── react_ts.svg │ ├── readme.svg │ ├── reason.svg │ ├── red.svg │ ├── redux-action.svg │ ├── redux-reducer.svg │ ├── redux-store.svg │ ├── restql.svg │ ├── riot.svg │ ├── robot.svg │ ├── rollup.svg │ ├── routing.svg │ ├── ruby.svg │ ├── rust.svg │ ├── san.svg │ ├── sass.svg │ ├── sbt.svg │ ├── scala.svg │ ├── scheme.svg │ ├── semantic-release.svg │ ├── semantic-release_light.svg │ ├── sequelize.svg │ ├── settings.svg │ ├── shaderlab.svg │ ├── silverstripe.svg │ ├── slim.svg │ ├── smarty.svg │ ├── snyk.svg │ ├── solidity.svg │ ├── stencil.svg │ ├── stencil_light.svg │ ├── storybook.svg │ ├── stylelint.svg │ ├── stylelint_light.svg │ ├── stylus.svg │ ├── sublime.svg │ ├── svelte.svg │ ├── svg.svg │ ├── swc.svg │ ├── swift.svg │ ├── table.svg │ ├── tailwindcss.svg │ ├── terraform.svg │ ├── test-js.svg │ ├── test-jsx.svg │ ├── test-ts.svg │ ├── tex.svg │ ├── todo.svg │ ├── travis.svg │ ├── tune.svg │ ├── twig.svg │ ├── typescript-def.svg │ ├── typescript.svg │ ├── url.svg │ ├── vagrant.svg │ ├── velocity.svg │ ├── verilog.svg │ ├── vfl.svg │ ├── video.svg │ ├── vim.svg │ ├── virtual.svg │ ├── visualstudio.svg │ ├── vscode.svg │ ├── vue-config.svg │ ├── vue.svg │ ├── vuex-store.svg │ ├── wakatime.svg │ ├── wakatime_light.svg │ ├── wallaby.svg │ ├── watchman.svg │ ├── webassembly.svg │ ├── webhint.svg │ ├── webpack.svg │ ├── wepy.svg │ ├── wolframlanguage.svg │ ├── word.svg │ ├── xaml.svg │ ├── xml.svg │ ├── yaml.svg │ ├── yang.svg │ ├── yarn.svg │ └── zip.svg └── material-icons.json ├── index.html ├── index.js ├── jszip.min.js ├── main.js ├── mode-c_cpp.js ├── mode-java.js ├── mode-javascript.js ├── mode-json.js ├── mode-python.js ├── mode-xml.js ├── piskel ├── css │ ├── fonts │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ ├── icomoon.woff │ │ ├── piskel.eot │ │ ├── piskel.svg │ │ ├── piskel.ttf │ │ └── piskel.woff │ └── piskel-style-packaged-2019-06-20-11-45.css ├── img │ ├── canvas-backgrounds │ │ ├── canvas-background-light.png │ │ ├── canvas-background-lowcontrast-dark.png │ │ ├── canvas-background-lowcontrast-medium.png │ │ └── canvas-background-medium.png │ ├── cursors │ │ ├── circle.png │ │ ├── color-palette.png │ │ ├── dither.png │ │ ├── dropper.png │ │ ├── eraser.png │ │ ├── hand.png │ │ ├── lighten.png │ │ ├── mirror-pen.png │ │ ├── paint-bucket.png │ │ ├── pen.png │ │ ├── rectangle.png │ │ ├── select.png │ │ ├── stroke.png │ │ ├── vertical-mirror-pen.png │ │ └── wand.png │ ├── favicon.png │ ├── icons.png │ ├── icons │ │ ├── common │ │ │ ├── common-backup-white.png │ │ │ ├── common-backup-white@2x.png │ │ │ ├── common-keyboard-gold.png │ │ │ ├── common-keyboard-gold@2x.png │ │ │ ├── common-swapcolors-arrow-grey.png │ │ │ ├── common-swapcolors-arrow-grey@2x.png │ │ │ ├── common-warning-red.png │ │ │ └── common-warning-red@2x.png │ │ ├── frame │ │ │ ├── frame-dragndrop-white.png │ │ │ ├── frame-dragndrop-white@2x.png │ │ │ ├── frame-duplicate-white.png │ │ │ ├── frame-duplicate-white@2x.png │ │ │ ├── frame-plus-white.png │ │ │ ├── frame-plus-white@2x.png │ │ │ ├── frame-recyclebin-white.png │ │ │ └── frame-recyclebin-white@2x.png │ │ ├── minimap │ │ │ ├── minimap-grid-gold.png │ │ │ ├── minimap-grid-gold@2x.png │ │ │ ├── minimap-grid-white.png │ │ │ ├── minimap-grid-white@2x.png │ │ │ ├── minimap-popup-preview-arrow-gold.png │ │ │ ├── minimap-popup-preview-arrow-gold@2x.png │ │ │ ├── minimap-popup-preview-arrow-white.png │ │ │ └── minimap-popup-preview-arrow-white@2x.png │ │ ├── settings │ │ │ ├── settings-export-white.png │ │ │ ├── settings-export-white@2x.png │ │ │ ├── settings-gear-white.png │ │ │ ├── settings-gear-white@2x.png │ │ │ ├── settings-open-folder-white.png │ │ │ ├── settings-open-folder-white@2x.png │ │ │ ├── settings-resize-white.png │ │ │ ├── settings-resize-white@2x.png │ │ │ ├── settings-save-white.png │ │ │ └── settings-save-white@2x.png │ │ ├── tools │ │ │ ├── tool-circle.png │ │ │ ├── tool-circle@2x.png │ │ │ ├── tool-colorpicker.png │ │ │ ├── tool-colorpicker@2x.png │ │ │ ├── tool-colorswap.png │ │ │ ├── tool-colorswap@2x.png │ │ │ ├── tool-dithering.png │ │ │ ├── tool-dithering@2x.png │ │ │ ├── tool-eraser.png │ │ │ ├── tool-eraser@2x.png │ │ │ ├── tool-lasso-select.png │ │ │ ├── tool-lasso-select@2x.png │ │ │ ├── tool-lighten.png │ │ │ ├── tool-lighten@2x.png │ │ │ ├── tool-move.png │ │ │ ├── tool-move@2x.png │ │ │ ├── tool-paint-bucket.png │ │ │ ├── tool-paint-bucket@2x.png │ │ │ ├── tool-pen.png │ │ │ ├── tool-pen@2x.png │ │ │ ├── tool-rectangle-select.png │ │ │ ├── tool-rectangle-select@2x.png │ │ │ ├── tool-rectangle.png │ │ │ ├── tool-rectangle@2x.png │ │ │ ├── tool-shape-select.png │ │ │ ├── tool-shape-select@2x.png │ │ │ ├── tool-stroke.png │ │ │ ├── tool-stroke@2x.png │ │ │ ├── tool-vertical-mirror-pen.png │ │ │ └── tool-vertical-mirror-pen@2x.png │ │ └── transform │ │ │ ├── tool-center.png │ │ │ ├── tool-center@2x.png │ │ │ ├── tool-clone.png │ │ │ ├── tool-clone@2x.png │ │ │ ├── tool-crop.png │ │ │ ├── tool-crop@2x.png │ │ │ ├── tool-flip.png │ │ │ ├── tool-flip@2x.png │ │ │ ├── tool-rotate.png │ │ │ └── tool-rotate@2x.png │ ├── icons@2x.png │ └── unused │ │ ├── circle-dark.png │ │ ├── eraser-dark.png │ │ ├── eyedropper-dark.png │ │ ├── gallery.png │ │ ├── hand-dark.png │ │ ├── lasso-dark.png │ │ ├── magicwand-dark.png │ │ ├── paintbucket-dark.png │ │ ├── pen-dark.png │ │ ├── rectangle-dark.png │ │ └── rectangle_selection-dark.png ├── index.html ├── js │ ├── lib │ │ └── gif │ │ │ └── gif.ie.worker.js │ ├── piskel-packaged-2019-06-20-11-45.js │ └── piskel-packaged-min-2019-06-20-11-45.js ├── logo.png └── piskelapp-partials │ └── main-partial.html ├── pool.js ├── scope.html ├── snippets ├── c_cpp.js ├── java.js ├── javascript.js ├── markdown.js ├── python.js └── text.js ├── splash-upcoming.html ├── splash.html ├── splash.jpg ├── splash.png ├── splash.webm ├── splash0.webm ├── splash1.webm ├── splash2.png ├── splash2.webm ├── splash3.webm ├── style.css ├── theme-ambiance.js ├── theme-chaos.js ├── theme-chrome.js ├── theme-clouds.js ├── theme-kuroir.js ├── theme-monokai.js ├── uwa.js ├── w8gdH283Tvk__Lua32TysjIfp8uP.woff2 ├── w8gdH283Tvk__Lua32TysjIfqcuPP9g.woff2 ├── worker-javascript.js └── worker-json.js /.gitignore: -------------------------------------------------------------------------------- 1 | TAGS 2 | *.ts 3 | *.map 4 | *.*~ 5 | .ccls-cache -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "PokittoLib"] 2 | path = PokittoLib 3 | url = https://github.com/Pokitto/PokittoLib 4 | [submodule "www/BassoonTracker"] 5 | path = www/BassoonTracker 6 | url = https://github.com/steffest/BassoonTracker 7 | [submodule "femto"] 8 | path = femto 9 | url = git@github.com:felipemanga/FemtoLib.git 10 | -------------------------------------------------------------------------------- /javacompiler/ID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/ID -------------------------------------------------------------------------------- /javacompiler/ImportDeclaration.js: -------------------------------------------------------------------------------- 1 | class ImportDeclaration { 2 | constructor( node ){ 3 | this.fqcn = node.children.packageOrTypeName[0] 4 | .children.Identifier 5 | .map( node => node.image ); 6 | this.star = !!node.children.Star; 7 | this.isStatic = !!node.children.Static; 8 | } 9 | } 10 | 11 | module.exports = ImportDeclaration; 12 | -------------------------------------------------------------------------------- /javacompiler/Interface.js: -------------------------------------------------------------------------------- 1 | const {Type} = require("./Type.js"); 2 | 3 | class Interface extends Type { 4 | constructor( node, parent ){ 5 | super(node, "normalInterfaceDeclaration", "class", parent); 6 | this.isInterface = true; 7 | } 8 | } 9 | 10 | module.exports = Interface; 11 | -------------------------------------------------------------------------------- /javacompiler/Log.js: -------------------------------------------------------------------------------- 1 | let _logger = (...args)=>console.log(...args); 2 | module.exports.setLogger = logger=>_logger = logger; 3 | module.exports.log = (...args) => _logger(...args); 4 | -------------------------------------------------------------------------------- /javacompiler/desktop/end.cpp: -------------------------------------------------------------------------------- 1 | $GLOBAL$ 2 | 3 | int main(){ 4 | $BEFOREMAIN$ 5 | __initialize_classes__(); 6 | $MAIN$(new uc_Array()); 7 | uc_Object::__gc__(); 8 | } 9 | -------------------------------------------------------------------------------- /javacompiler/examples/Examples.md: -------------------------------------------------------------------------------- 1 | # Examples {#mainpage} 2 | 3 | * @subpage intervalometer 4 | * @subpage sincosgraphical -------------------------------------------------------------------------------- /javacompiler/examples/images/SineAndCosineGraphicalRepresentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/examples/images/SineAndCosineGraphicalRepresentation.png -------------------------------------------------------------------------------- /javacompiler/femto/CPP.java: -------------------------------------------------------------------------------- 1 | package femto; 2 | 3 | public @interface CPP { 4 | public String include() default ""; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /javacompiler/femto/FrameRef.java: -------------------------------------------------------------------------------- 1 | package femto; 2 | 3 | public class FrameRef extends __raw__ { 4 | pointer frame; 5 | byte offsetX, offsetY; 6 | ushort duration; 7 | } 8 | -------------------------------------------------------------------------------- /javacompiler/femto/Mode15.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package femto; 3 | 4 | public class Mode15 implements __stub__ implements ScreenMode { 5 | public char[] buffer; 6 | } 7 | 8 | `; 9 | -------------------------------------------------------------------------------- /javacompiler/femto/StringPair.java: -------------------------------------------------------------------------------- 1 | package femto; 2 | 3 | public class StringPair { 4 | public String key; 5 | public String value; 6 | StringPair( String key, String value ){ 7 | this.key = key; 8 | this.value = value; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /javacompiler/femto/TileSet.java: -------------------------------------------------------------------------------- 1 | package femto; 2 | 3 | public class TileSet extends Image { 4 | public byte flags; 5 | public int tileId; 6 | 7 | public boolean isTransparent(){ 8 | return (flags&0x80) != 0; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /javacompiler/femto/XMLNode.java: -------------------------------------------------------------------------------- 1 | package femto; 2 | 3 | public class XMLNode { 4 | String tag; 5 | StringPair[] attributes; 6 | XMLNode[] children; 7 | String value; 8 | 9 | XMLNode( String tag, StringPair[] attributes, XMLNode[] children, String value ){ 10 | this.tag = tag; 11 | this.attributes = attributes; 12 | this.children = children; 13 | this.value = value; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /javacompiler/femto/font/Adventurer.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/femto/font/Adventurer.font -------------------------------------------------------------------------------- /javacompiler/femto/font/Donut.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/femto/font/Donut.font -------------------------------------------------------------------------------- /javacompiler/femto/font/Dragon.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/femto/font/Dragon.font -------------------------------------------------------------------------------- /javacompiler/femto/font/Font5x7.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/femto/font/Font5x7.font -------------------------------------------------------------------------------- /javacompiler/femto/font/FontC64.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/femto/font/FontC64.font -------------------------------------------------------------------------------- /javacompiler/femto/font/FontMonkey.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/femto/font/FontMonkey.font -------------------------------------------------------------------------------- /javacompiler/femto/font/Karateka.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/femto/font/Karateka.font -------------------------------------------------------------------------------- /javacompiler/femto/font/Mini.font: -------------------------------------------------------------------------------- 1 |   2 |  3 |     4 |  5 | 0    6 |   7 |  8 |  9 | 4 10 | 11 |  12 |   13 |    14 |   15 |  16 |  17 |  18 |   -------------------------------------------------------------------------------- /javacompiler/femto/font/Runes.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/femto/font/Runes.font -------------------------------------------------------------------------------- /javacompiler/femto/font/Tiny.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/femto/font/Tiny.font -------------------------------------------------------------------------------- /javacompiler/femto/font/ZXSpec.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/femto/font/ZXSpec.font -------------------------------------------------------------------------------- /javacompiler/femto/hardware/IRQ.java: -------------------------------------------------------------------------------- 1 | package femto.hardware; 2 | 3 | public @interface IRQ { 4 | public String name() default ""; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /javacompiler/femto/input/ButtonListener.java: -------------------------------------------------------------------------------- 1 | package femto.input; 2 | 3 | /// This class represents an event listener that can respond to a change in a button's state. 4 | public class ButtonListener { 5 | /// The method to be called when a `Button`'s state has somehow changed. 6 | void change( Button button ){} 7 | } 8 | 9 | -------------------------------------------------------------------------------- /javacompiler/femto/mode/LowResHiColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/femto/mode/LowResHiColor.js -------------------------------------------------------------------------------- /javacompiler/femto/palette/A64.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 11 11 11 5 | 86 98 98 6 | 141 141 133 7 | 167 181 186 8 | 240 233 207 9 | 211 159 128 10 | 176 112 62 11 | 90 65 66 12 | 209 209 91 13 | 167 210 84 14 | 88 162 60 15 | 122 194 224 16 | 120 106 255 17 | 62 72 157 18 | 131 99 173 19 | 193 72 103 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Aap16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 7 7 8 5 | 51 34 34 6 | 119 68 51 7 | 204 136 85 8 | 153 51 17 9 | 221 119 17 10 | 255 221 85 11 | 255 255 51 12 | 85 170 68 13 | 17 85 34 14 | 68 238 187 15 | 51 136 221 16 | 85 68 170 17 | 85 85 119 18 | 170 187 187 19 | 255 255 255 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/AndrewKensler16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 255 255 255 6 | 201 143 76 7 | 110 78 35 8 | 232 2 0 9 | 239 227 5 10 | 106 137 39 11 | 25 86 72 12 | 22 237 117 13 | 50 193 195 14 | 5 127 193 15 | 63 50 174 16 | 186 170 255 17 | 255 148 157 18 | 227 14 194 19 | 122 36 61 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Arne16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 73 60 43 6 | 190 38 51 7 | 224 111 139 8 | 157 157 157 9 | 164 100 34 10 | 235 137 49 11 | 247 226 107 12 | 255 255 255 13 | 27 38 50 14 | 47 72 78 15 | 68 137 26 16 | 163 206 39 17 | 0 87 132 18 | 49 162 242 19 | 178 220 239 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Arq16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 255 255 255 5 | 255 209 157 6 | 174 181 189 7 | 77 128 201 8 | 233 56 65 9 | 16 8 32 10 | 81 30 67 11 | 5 68 148 12 | 241 137 45 13 | 130 62 44 14 | 255 169 169 15 | 90 225 80 16 | 255 233 71 17 | 125 62 191 18 | 235 108 130 19 | 30 138 76 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Bubblegum16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 22 23 26 5 | 127 6 34 6 | 214 36 17 7 | 255 132 38 8 | 255 209 0 9 | 250 253 255 10 | 255 128 164 11 | 255 38 116 12 | 148 33 106 13 | 67 0 103 14 | 35 73 117 15 | 104 174 212 16 | 191 255 60 17 | 16 210 117 18 | 0 120 153 19 | 0 40 89 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Castpixel16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 45 27 46 5 | 33 138 145 6 | 60 194 250 7 | 154 246 253 8 | 74 36 124 9 | 87 75 103 10 | 147 122 197 11 | 138 226 93 12 | 142 43 69 13 | 240 65 86 14 | 242 114 206 15 | 211 192 168 16 | 197 117 74 17 | 242 167 89 18 | 247 219 83 19 | 249 244 234 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/CdBac.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 218 131 92 6 | 127 55 16 7 | 196 196 102 8 | 244 251 74 9 | 199 240 220 10 | 119 226 142 11 | 49 152 63 12 | 55 54 141 13 | 142 100 227 14 | 214 151 255 15 | 245 206 230 16 | 253 245 249 17 | 206 63 80 18 | 93 9 41 19 | 48 20 33 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Cgarne.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 94 96 110 6 | 34 52 209 7 | 76 129 251 8 | 12 126 69 9 | 108 217 71 10 | 68 170 204 11 | 123 226 249 12 | 138 54 34 13 | 235 138 96 14 | 92 46 120 15 | 226 61 105 16 | 170 92 61 17 | 255 217 63 18 | 181 181 181 19 | 255 255 255 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Chip16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 214 75 97 5 | 58 35 51 6 | 0 0 20 7 | 83 140 193 8 | 112 198 229 9 | 6 62 76 10 | 99 114 114 11 | 142 55 55 12 | 89 142 51 13 | 124 182 73 14 | 86 83 73 15 | 234 200 121 16 | 196 133 78 17 | 111 26 113 18 | 229 229 229 19 | 216 162 162 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Chromatic16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 144 176 176 6 | 255 255 255 7 | 128 0 24 8 | 255 0 0 9 | 160 80 0 10 | 255 128 0 11 | 255 192 128 12 | 255 255 0 13 | 32 172 0 14 | 64 255 0 15 | 0 48 112 16 | 48 112 176 17 | 0 208 255 18 | 160 0 224 19 | 255 96 255 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Cm16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 231 235 248 5 | 173 177 224 6 | 176 107 181 7 | 109 46 164 8 | 170 228 116 9 | 20 173 160 10 | 89 122 205 11 | 125 201 222 12 | 255 247 167 13 | 255 190 108 14 | 255 103 115 15 | 187 2 122 16 | 248 200 175 17 | 161 115 116 18 | 46 91 134 19 | 12 42 71 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Colodore.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 74 74 74 6 | 123 123 123 7 | 178 178 178 8 | 255 255 255 9 | 129 51 56 10 | 196 108 113 11 | 85 56 0 12 | 142 80 41 13 | 237 241 113 14 | 169 255 159 15 | 86 172 77 16 | 117 206 200 17 | 112 109 235 18 | 46 44 155 19 | 142 60 151 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/ColorGraphicsAdapter.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 85 85 85 6 | 170 170 170 7 | 255 255 255 8 | 0 0 170 9 | 85 85 255 10 | 0 170 0 11 | 85 255 85 12 | 0 170 170 13 | 85 255 255 14 | 170 0 0 15 | 255 85 85 16 | 170 0 170 17 | 255 85 255 18 | 170 85 0 19 | 255 255 85 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Commodore64.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 98 98 98 6 | 137 137 137 7 | 173 173 173 8 | 255 255 255 9 | 159 78 68 10 | 203 126 117 11 | 109 84 18 12 | 161 104 60 13 | 201 212 135 14 | 154 226 155 15 | 92 171 94 16 | 106 191 198 17 | 136 126 203 18 | 80 69 155 19 | 160 87 163 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/CommodoreVic20.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 255 255 255 6 | 168 115 74 7 | 233 178 135 8 | 119 45 38 9 | 182 104 98 10 | 133 212 220 11 | 197 255 255 12 | 168 95 180 13 | 233 157 245 14 | 85 158 74 15 | 146 223 135 16 | 66 52 139 17 | 126 112 202 18 | 189 204 113 19 | 255 255 176 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/CopperTech.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 38 33 68 6 | 53 82 120 7 | 96 116 138 8 | 137 137 137 9 | 90 168 178 10 | 145 217 243 11 | 255 255 255 12 | 244 205 114 13 | 191 181 136 14 | 197 136 67 15 | 158 91 71 16 | 95 67 81 17 | 220 57 45 18 | 110 169 44 19 | 22 81 221 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Crimso11.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 255 255 227 5 | 243 215 98 6 | 191 150 81 7 | 118 154 85 8 | 203 94 49 9 | 142 57 61 10 | 122 73 98 11 | 94 69 49 12 | 142 195 207 13 | 134 118 150 14 | 69 110 81 15 | 61 98 134 16 | 53 61 90 17 | 35 46 50 18 | 65 41 45 19 | 17 11 17 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Cthulhu16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 29 37 49 5 | 165 229 197 6 | 240 250 253 7 | 82 165 147 8 | 43 98 103 9 | 30 48 58 10 | 59 66 81 11 | 82 123 146 12 | 125 193 193 13 | 199 255 243 14 | 184 203 216 15 | 126 141 161 16 | 143 169 144 17 | 229 222 187 18 | 206 160 97 19 | 133 71 49 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Dawnbringer16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 20 12 28 5 | 68 36 52 6 | 48 52 109 7 | 78 74 78 8 | 133 76 48 9 | 52 101 36 10 | 208 70 72 11 | 117 113 97 12 | 89 125 206 13 | 210 125 44 14 | 133 149 161 15 | 109 170 44 16 | 210 170 153 17 | 109 194 202 18 | 218 212 94 19 | 222 238 214 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Dinoknight16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 15 21 27 5 | 41 39 50 6 | 83 88 103 7 | 149 146 143 8 | 241 241 234 9 | 197 141 101 10 | 141 82 66 11 | 81 61 61 12 | 236 213 109 13 | 234 119 48 14 | 205 61 61 15 | 124 63 140 16 | 48 66 113 17 | 0 131 200 18 | 71 164 77 19 | 31 97 67 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Drazile16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 209 166 73 5 | 221 114 82 6 | 198 75 59 7 | 117 70 83 8 | 155 114 105 9 | 188 141 173 10 | 204 180 161 11 | 202 216 108 12 | 171 186 188 13 | 111 188 111 14 | 79 115 124 15 | 48 58 53 16 | 92 58 150 17 | 138 135 142 18 | 111 150 214 19 | 226 226 199 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/EasterIsland.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 246 246 191 5 | 230 209 209 6 | 134 134 145 7 | 121 71 101 8 | 245 225 122 9 | 237 195 141 10 | 204 141 134 11 | 202 101 126 12 | 57 212 185 13 | 141 188 210 14 | 129 132 171 15 | 104 96 134 16 | 157 192 133 17 | 126 167 136 18 | 86 120 100 19 | 5 22 37 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Endesga16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 228 166 114 5 | 184 111 80 6 | 116 63 57 7 | 63 40 50 8 | 158 40 53 9 | 229 59 68 10 | 251 146 43 11 | 255 231 98 12 | 99 198 77 13 | 50 115 69 14 | 25 61 63 15 | 79 103 129 16 | 175 191 210 17 | 255 255 255 18 | 44 232 244 19 | 4 132 209 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/EndesgaSoft16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 254 254 215 5 | 219 188 150 6 | 221 172 70 7 | 194 89 64 8 | 104 61 100 9 | 156 102 89 10 | 136 67 79 11 | 77 40 49 12 | 169 171 163 13 | 102 104 105 14 | 81 177 202 15 | 23 115 184 16 | 99 159 91 17 | 55 110 73 18 | 50 52 65 19 | 22 19 35 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Enos16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 250 250 250 5 | 212 212 212 6 | 157 157 157 7 | 75 75 75 8 | 249 211 129 9 | 234 175 77 10 | 249 147 138 11 | 231 89 82 12 | 154 209 249 13 | 88 174 238 14 | 141 237 167 15 | 68 197 91 16 | 195 167 225 17 | 149 105 200 18 | 186 181 170 19 | 148 142 130 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/ErogeCopper.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 13 8 13 5 | 79 43 36 6 | 130 91 49 7 | 197 145 84 8 | 240 189 119 9 | 251 223 155 10 | 255 249 228 11 | 190 187 178 12 | 123 178 78 13 | 116 173 187 14 | 65 128 160 15 | 50 83 95 16 | 42 35 73 17 | 125 56 64 18 | 193 108 91 19 | 232 153 115 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Europa16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 26 27 53 5 | 117 206 234 6 | 255 255 255 7 | 49 122 215 8 | 40 55 133 9 | 46 53 78 10 | 79 102 120 11 | 164 188 194 12 | 236 248 96 13 | 148 212 70 14 | 59 120 80 15 | 32 50 46 16 | 81 32 49 17 | 164 62 75 18 | 220 125 94 19 | 240 204 144 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Fantasy16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 142 109 52 5 | 81 58 24 6 | 51 39 16 7 | 20 19 12 8 | 70 24 32 9 | 166 60 30 10 | 211 123 30 11 | 231 188 79 12 | 238 238 250 13 | 217 213 91 14 | 117 115 32 15 | 20 33 15 16 | 4 4 5 17 | 28 27 47 18 | 67 80 99 19 | 96 161 143 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Flyguy16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 39 22 32 5 | 36 45 66 6 | 50 107 60 7 | 100 180 80 8 | 238 234 68 9 | 240 233 219 10 | 169 54 48 11 | 63 48 37 12 | 83 60 96 13 | 36 73 94 14 | 55 149 137 15 | 164 232 223 16 | 238 182 145 17 | 219 131 51 18 | 120 81 54 19 | 86 105 105 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Froste16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 242 162 162 5 | 230 160 160 6 | 217 167 167 7 | 204 164 164 8 | 191 161 161 9 | 179 159 159 10 | 166 156 156 11 | 153 153 153 12 | 102 102 102 13 | 89 89 99 14 | 77 77 97 15 | 64 64 94 16 | 51 51 91 17 | 38 38 98 18 | 26 26 96 19 | 13 13 93 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Fun16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 8 0 8 5 | 94 102 96 6 | 42 52 67 7 | 93 70 50 8 | 68 80 140 9 | 166 65 77 10 | 200 107 54 11 | 131 117 175 12 | 82 144 60 13 | 219 126 189 14 | 91 153 244 15 | 222 172 133 16 | 148 204 78 17 | 132 219 252 18 | 242 222 112 19 | 252 255 254 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/FztEthereal16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 243 243 243 5 | 249 194 164 6 | 184 112 14 7 | 94 13 36 8 | 162 158 180 9 | 194 89 223 10 | 143 39 184 11 | 193 0 43 12 | 108 96 111 13 | 0 71 237 14 | 0 168 243 15 | 221 180 17 16 | 0 73 82 17 | 7 134 92 18 | 0 195 125 19 | 5 28 37 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/GrungeShift.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 36 36 36 6 | 36 0 36 7 | 72 36 0 8 | 108 36 36 9 | 180 36 0 10 | 216 180 144 11 | 180 144 0 12 | 108 108 0 13 | 72 72 0 14 | 0 252 216 15 | 72 144 252 16 | 72 108 144 17 | 36 72 144 18 | 144 72 180 19 | 216 108 180 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/IslandJoy16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 255 255 255 5 | 109 247 193 6 | 17 173 193 7 | 96 108 129 8 | 57 52 87 9 | 30 136 117 10 | 91 179 97 11 | 161 229 90 12 | 247 228 118 13 | 249 146 82 14 | 203 77 104 15 | 106 55 113 16 | 201 36 100 17 | 244 140 182 18 | 247 182 158 19 | 155 156 130 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/JmpJapaneseMachinePalette.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 25 16 40 6 | 70 175 69 7 | 161 214 133 8 | 69 62 120 9 | 118 100 254 10 | 131 49 41 11 | 158 194 232 12 | 220 83 75 13 | 225 141 121 14 | 214 185 123 15 | 233 216 161 16 | 33 108 75 17 | 211 101 200 18 | 175 170 185 19 | 245 244 235 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Jw64.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 64 64 64 6 | 140 140 140 7 | 200 200 200 8 | 100 64 32 9 | 168 47 47 10 | 180 100 41 11 | 224 128 108 12 | 64 63 192 13 | 100 150 244 14 | 99 212 240 15 | 224 224 64 16 | 180 55 180 17 | 84 192 72 18 | 160 246 110 19 | 255 255 255 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/MacintoshIi.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 255 255 255 5 | 255 255 0 6 | 255 101 0 7 | 220 0 0 8 | 255 0 151 9 | 54 0 151 10 | 0 0 202 11 | 0 151 255 12 | 0 168 0 13 | 0 101 0 14 | 101 54 0 15 | 151 101 54 16 | 185 185 185 17 | 134 134 134 18 | 69 69 69 19 | 0 0 0 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Master16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 20 20 20 5 | 59 49 47 6 | 110 101 95 7 | 150 149 144 8 | 235 232 218 9 | 245 125 125 10 | 161 26 44 11 | 74 22 40 12 | 97 42 42 13 | 201 101 64 14 | 212 190 66 15 | 240 194 149 16 | 39 102 71 17 | 102 191 61 18 | 43 48 97 19 | 69 130 204 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/MicrosoftWindows.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 126 126 126 6 | 190 190 190 7 | 255 255 255 8 | 126 0 0 9 | 254 0 0 10 | 4 126 0 11 | 6 255 4 12 | 255 255 4 13 | 126 126 0 14 | 0 0 126 15 | 0 0 255 16 | 126 0 126 17 | 254 0 255 18 | 4 126 126 19 | 6 255 255 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Na16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 140 143 174 5 | 88 69 99 6 | 62 33 55 7 | 154 99 72 8 | 215 155 125 9 | 245 237 186 10 | 192 199 65 11 | 100 125 52 12 | 228 148 58 13 | 157 48 59 14 | 210 100 113 15 | 112 55 127 16 | 126 196 193 17 | 52 133 157 18 | 23 67 75 19 | 31 14 28 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Naji16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 16 26 58 5 | 61 14 38 6 | 100 17 61 7 | 72 46 105 8 | 63 66 90 9 | 106 52 101 10 | 116 67 74 11 | 89 85 121 12 | 183 62 98 13 | 141 109 156 14 | 100 150 124 15 | 192 113 159 16 | 200 146 108 17 | 220 162 134 18 | 242 201 102 19 | 230 209 213 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Night16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 15 15 30 5 | 255 248 188 6 | 12 33 51 7 | 72 88 109 8 | 121 160 176 9 | 176 206 157 10 | 101 127 73 11 | 63 69 54 12 | 185 157 106 13 | 255 221 145 14 | 221 148 91 15 | 154 81 66 16 | 100 75 72 17 | 51 48 51 18 | 118 112 136 19 | 197 163 179 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Optimum.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 87 87 87 6 | 160 160 160 7 | 255 255 255 8 | 42 75 215 9 | 29 105 20 10 | 129 74 25 11 | 129 38 192 12 | 157 175 255 13 | 129 197 122 14 | 233 222 187 15 | 173 35 35 16 | 41 208 208 17 | 255 238 51 18 | 255 146 51 19 | 255 205 243 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Pavanz16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 32 0 55 5 | 255 238 220 6 | 101 37 63 7 | 51 62 85 8 | 180 47 75 9 | 132 90 117 10 | 64 107 129 11 | 143 105 61 12 | 43 125 95 13 | 136 141 163 14 | 199 143 134 15 | 216 151 99 16 | 161 178 92 17 | 162 204 201 18 | 225 203 199 19 | 239 212 151 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/PeachyPop16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 253 255 255 5 | 255 134 134 6 | 251 71 113 7 | 206 24 106 8 | 143 11 95 9 | 83 3 75 10 | 173 109 234 11 | 159 185 255 12 | 86 127 235 13 | 10 84 123 14 | 39 140 127 15 | 12 231 167 16 | 172 252 173 17 | 255 236 109 18 | 255 167 99 19 | 255 64 64 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Pico8.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 95 87 79 6 | 194 195 199 7 | 255 241 232 8 | 255 236 39 9 | 255 163 0 10 | 255 204 170 11 | 171 82 54 12 | 255 119 168 13 | 255 0 77 14 | 131 118 156 15 | 126 37 83 16 | 41 173 255 17 | 29 43 83 18 | 0 135 81 19 | 0 228 54 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Psygnosia.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 27 30 41 6 | 54 39 71 7 | 68 63 65 8 | 82 82 76 9 | 100 100 124 10 | 115 97 80 11 | 119 120 91 12 | 158 164 167 13 | 203 232 247 14 | 224 139 121 15 | 162 50 78 16 | 0 51 8 17 | 8 74 60 18 | 84 106 0 19 | 81 108 191 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/RPlace.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 255 255 255 5 | 228 228 228 6 | 136 136 136 7 | 34 34 34 8 | 255 167 209 9 | 229 0 0 10 | 229 149 0 11 | 160 106 66 12 | 229 217 0 13 | 148 224 68 14 | 2 190 1 15 | 0 211 221 16 | 0 131 199 17 | 0 0 234 18 | 207 110 228 19 | 130 0 128 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/RiscOs.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 255 255 255 5 | 220 220 220 6 | 185 185 185 7 | 151 151 151 8 | 118 118 118 9 | 85 85 85 10 | 54 54 54 11 | 0 0 0 12 | 0 69 151 13 | 237 237 4 14 | 5 202 0 15 | 220 0 0 16 | 237 237 185 17 | 85 134 0 18 | 255 185 0 19 | 4 185 255 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Simplejpc16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 5 4 3 5 | 34 31 49 6 | 84 53 22 7 | 155 110 45 8 | 225 176 71 9 | 245 238 155 10 | 254 254 254 11 | 139 225 224 12 | 124 194 100 13 | 103 143 203 14 | 49 111 35 15 | 64 74 104 16 | 161 77 63 17 | 165 104 212 18 | 154 147 183 19 | 234 145 130 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/SteamLords.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 33 59 37 5 | 58 96 74 6 | 79 119 84 7 | 161 159 124 8 | 119 116 79 9 | 119 92 79 10 | 96 59 58 11 | 59 33 55 12 | 23 14 25 13 | 47 33 59 14 | 67 58 96 15 | 79 82 119 16 | 101 115 140 17 | 124 148 161 18 | 160 185 186 19 | 192 209 204 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Super1716.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 36 9 9 5 | 40 23 26 6 | 55 26 46 7 | 52 43 65 8 | 87 51 63 9 | 50 55 100 10 | 42 90 81 11 | 51 69 145 12 | 131 72 72 13 | 215 56 96 14 | 80 121 82 15 | 38 90 206 16 | 148 122 108 17 | 195 181 112 18 | 223 138 199 19 | 234 244 183 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Sweetie16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 26 28 44 5 | 93 39 93 6 | 177 62 83 7 | 239 125 87 8 | 255 205 117 9 | 167 240 112 10 | 56 183 100 11 | 37 113 121 12 | 41 54 111 13 | 59 93 201 14 | 65 166 246 15 | 115 239 247 16 | 244 244 244 17 | 148 176 194 18 | 86 108 134 19 | 51 60 87 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Taffy16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 34 37 51 5 | 98 117 186 6 | 163 192 230 7 | 250 255 252 8 | 255 171 123 9 | 255 108 122 10 | 220 67 91 11 | 63 72 194 12 | 68 141 231 13 | 43 219 114 14 | 167 245 71 15 | 255 235 51 16 | 245 137 49 17 | 219 75 61 18 | 166 61 87 19 | 54 53 77 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/ThomsonM05.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 187 187 187 6 | 255 0 0 7 | 221 119 119 8 | 238 187 0 9 | 255 255 0 10 | 221 221 119 11 | 0 255 0 12 | 119 221 119 13 | 0 255 255 14 | 187 255 255 15 | 255 255 255 16 | 255 0 255 17 | 221 119 238 18 | 0 0 255 19 | 119 119 221 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Thug16.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 80 64 80 5 | 160 64 64 6 | 208 96 96 7 | 240 128 128 8 | 255 192 192 9 | 176 208 224 10 | 112 176 192 11 | 64 128 176 12 | 0 0 48 13 | 16 32 64 14 | 32 64 64 15 | 48 96 80 16 | 64 144 96 17 | 80 192 96 18 | 80 255 144 19 | 240 240 208 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/UltimaViAtariSt.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 240 240 240 5 | 192 160 160 6 | 112 96 96 7 | 32 32 32 8 | 0 0 0 9 | 80 240 80 10 | 0 160 0 11 | 0 96 0 12 | 80 144 240 13 | 0 64 208 14 | 16 16 112 15 | 240 208 128 16 | 224 80 0 17 | 208 0 0 18 | 80 64 32 19 | 208 48 208 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/UltimaViSharpX68000.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 225 225 225 5 | 165 165 165 6 | 75 75 75 7 | 0 0 0 8 | 225 195 180 9 | 225 165 120 10 | 165 90 15 11 | 165 0 0 12 | 225 30 0 13 | 225 75 225 14 | 225 225 75 15 | 75 225 75 16 | 0 165 0 17 | 0 0 165 18 | 75 75 225 19 | 75 225 225 20 | -------------------------------------------------------------------------------- /javacompiler/femto/palette/Zxarne52.pal: -------------------------------------------------------------------------------- 1 | JASC-PAL 2 | 0100 3 | 16 4 | 0 0 0 5 | 60 53 31 6 | 49 51 144 7 | 21 89 219 8 | 167 50 17 9 | 216 85 37 10 | 161 85 137 11 | 205 122 80 12 | 98 154 49 13 | 156 211 60 14 | 40 164 203 15 | 101 220 214 16 | 232 188 80 17 | 241 231 130 18 | 191 191 189 19 | 242 241 237 20 | -------------------------------------------------------------------------------- /javacompiler/getLocation.js: -------------------------------------------------------------------------------- 1 | function getLocation( obj, node ){ 2 | const {getUnit} = require("./Unit.js"); 3 | let unit = getUnit(obj); 4 | obj.location = Object.assign({ unit:unit.file }, node.location); 5 | if( obj.resolve ) 6 | unit.index.push(obj); 7 | return obj; 8 | } 9 | 10 | module.exports = getLocation; 11 | -------------------------------------------------------------------------------- /javacompiler/java/lang/Array.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | public class Array implements __stub__ { 3 | public int length; 4 | } 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/Exception.java: -------------------------------------------------------------------------------- 1 | package java.lang; 2 | 3 | public class Exception { 4 | } 5 | 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/Object.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class Object implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/Runnable.java: -------------------------------------------------------------------------------- 1 | package java.lang; 2 | 3 | public interface Runnable { 4 | void run(); 5 | } 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/String.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class String extends Object implements __stub_only__ { 5 | public static String valueOf( int i ){} 6 | public pointer getPointer(){} 7 | public int indexOf( char c ){} 8 | public int length(){} 9 | public bool equals( String other ){} 10 | String substring(int start, int end){} 11 | String substring(int start){} 12 | int hashCode(){} 13 | } 14 | `; 15 | -------------------------------------------------------------------------------- /javacompiler/java/lang/Thread.java: -------------------------------------------------------------------------------- 1 | package java.lang; 2 | 3 | public class Thread { 4 | 5 | /// Causes the program to pause for the specified number of milliseconds. 6 | public static void sleep(long millis){ 7 | long end = System.currentTimeMillis() + millis; 8 | while( System.currentTimeMillis() < end ){ 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /javacompiler/java/lang/boolean.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class __boolean_internal_placeholder__ implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/byte.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class __byte_internal_placeholder__ implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/char.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class __char_internal_placeholder__ implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/double.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class __double_internal_placeholder__ implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/float.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class __float_internal_placeholder__ implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/int.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class __int_internal_placeholder__ implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/long.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class __long_internal_placeholder__ implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/pointer.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class pointer implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/short.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class __short_internal_placeholder__ implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/ubyte.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class __ubyte_internal_placeholder__ implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/uint.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class uint implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/ulong.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class __ulong_internal_placeholder__ implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/ushort.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class __ushort_internal_placeholder__ implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/java/lang/void.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 2 | package java.lang; 3 | 4 | public class __void_internal_placeholder__ implements __stub_only__ {} 5 | `; 6 | -------------------------------------------------------------------------------- /javacompiler/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jokitto", 3 | "version": "1.0.0", 4 | "description": "Java for Pokitto compiler", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "cd tests && nodejs run.js" 8 | }, 9 | "author": "FManga", 10 | "license": "MIT", 11 | "dependencies": { 12 | "canvas": "^2.4.1", 13 | "java-parser": "^0.2.0" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /javacompiler/pokitto/end.cpp: -------------------------------------------------------------------------------- 1 | $BEGIN$ 2 | 3 | $HEAD$ 4 | 5 | $GENERATED$ 6 | 7 | $GLOBAL$ 8 | 9 | int main(){ 10 | $BEFOREMAIN$ 11 | __initialize_classes__(); 12 | $MAIN$(new uc_Array()); 13 | uc_Object::__gc__(); 14 | } 15 | -------------------------------------------------------------------------------- /javacompiler/pokitto/femto/mode/HiRes16Color/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/javacompiler/pokitto/femto/mode/HiRes16Color/command.cpp -------------------------------------------------------------------------------- /javacompiler/pokitto/includes/arm.i: -------------------------------------------------------------------------------- 1 | .equ ARM_NVIC_ISER, 0xe000e100 2 | 3 | -------------------------------------------------------------------------------- /javacompiler/pokitto/includes/lcd.i: -------------------------------------------------------------------------------- 1 | 2 | .equ POK_LCD_W, 220 3 | .equ POK_LCD_H, 176 4 | .equ BUFSIZE_HI_4, 9680 5 | .equ LCDWIDTH, POK_LCD_W 6 | .equ LCDHEIGHT, POK_LCD_H 7 | .equ POK_BITFRAME, 4840 8 | #.equ SCREENBUFFER, 0x10000000 9 | #.equ PALETTEPTR, 0x10000000+BUFSIZE_HI_4+2*4 10 | -------------------------------------------------------------------------------- /javacompiler/pokitto/includes/pvcopy.i: -------------------------------------------------------------------------------- 1 | 2 | .macro SET REG:req, VAL:req 3 | .word \REG 4 | .word \VAL 5 | .endm 6 | 7 | .macro CALL REG:req, VAL:req 8 | .word (\REG)+1 9 | .word \VAL 10 | .endm 11 | 12 | .macro OR REG:req, VAL:req 13 | .word \REG+2 14 | .word \VAL 15 | .endm 16 | 17 | .macro AND REG:req, VAL:req 18 | .word \REG+3 19 | .word \VAL 20 | .endm 21 | 22 | .macro END 23 | .word 0 24 | .endm 25 | -------------------------------------------------------------------------------- /javacompiler/pokitto/java/util/Arrays/fill.cpp: -------------------------------------------------------------------------------- 1 | auto begin = a->elements + fromIndex; 2 | auto end = a->elements + toIndex; 3 | for( auto ptr = begin; ptr != end; ++ptr ) 4 | *ptr = val; 5 | -------------------------------------------------------------------------------- /javacompiler/pokitto/libs/FemtoLibs/File/File: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | #if !defined(POKITTO) && !defined(PROJ_YAPFS_STREAMING) 5 | #include "./SIMFile.h" 6 | #elif defined(PROJ_SDFS_STREAMING) 7 | #include "./SDFSFile.h" 8 | #elif defined(NO_SD_CARD) 9 | #include "./NOPFile.h" 10 | #else 11 | #include "./YAPFSFile.h" 12 | #endif 13 | -------------------------------------------------------------------------------- /javacompiler/pokitto/libs/FemtoLibs/MemOps/MemOps: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | #if defined(TARGET_CORTEX_M) 6 | #include "MemOpsCortexM.h" 7 | #else 8 | #include "MemOpsCpp.h" 9 | #endif 10 | -------------------------------------------------------------------------------- /javacompiler/pokitto/libs/SystemInit_bas.s: -------------------------------------------------------------------------------- 1 | .code 16 2 | .syntax unified 3 | .global SystemInit 4 | 5 | .func SystemInit 6 | SystemInit: 7 | push {lr} 8 | pop {pc} 9 | .endfunc 10 | -------------------------------------------------------------------------------- /javacompiler/pokitto/libs/spi.s: -------------------------------------------------------------------------------- 1 | .code 16 2 | .syntax unified 3 | .include "lpc.i" 4 | 5 | spi_init_data: 6 | 7 | .word 0 8 | 9 | 10 | .global spi_init 11 | .func spi_init 12 | spi_init: 13 | push {lr} 14 | ldr r0, =spi_init_data 15 | bl PVCOPY 16 | pop {pc} 17 | 18 | .endfunc 19 | -------------------------------------------------------------------------------- /javacompiler/test.java: -------------------------------------------------------------------------------- 1 | 2 | public class Test { 3 | public static void main(String args[]){ 4 | System.out.println("Hello world!"); 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/.bin/crc32: -------------------------------------------------------------------------------- 1 | ../crc-32/bin/crc32.njs -------------------------------------------------------------------------------- /node_modules/.bin/isogit: -------------------------------------------------------------------------------- 1 | ../isomorphic-git/cli.js -------------------------------------------------------------------------------- /node_modules/.bin/printj: -------------------------------------------------------------------------------- 1 | ../printj/bin/printj.njs -------------------------------------------------------------------------------- /node_modules/.bin/sha.js: -------------------------------------------------------------------------------- 1 | ../sha.js/bin.js -------------------------------------------------------------------------------- /node_modules/async-lock/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('./lib'); 3 | -------------------------------------------------------------------------------- /node_modules/bops/copy.js: -------------------------------------------------------------------------------- 1 | module.exports = copy 2 | 3 | function copy(source, target, target_start, source_start, source_end) { 4 | return source.copy(target, target_start, source_start, source_end) 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/bops/create.js: -------------------------------------------------------------------------------- 1 | module.exports = create 2 | 3 | var Buffer = require('buffer').Buffer 4 | 5 | function create(size) { 6 | return new Buffer(size) 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/bops/from.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer 2 | 3 | module.exports = function(source, encoding) { 4 | return new Buffer(source, encoding) 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/bops/is.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer 2 | 3 | module.exports = function(buffer) { 4 | return Buffer.isBuffer(buffer); 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/bops/join.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer 2 | 3 | module.exports = function(targets, hint) { 4 | return hint !== undefined ? 5 | Buffer.concat(targets, hint) : 6 | Buffer.concat(targets) 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/bops/read.js: -------------------------------------------------------------------------------- 1 | var proto = {} 2 | , rex = /read.+/ 3 | , buildFn 4 | 5 | buildFn = function(key) { 6 | var code = '' + 7 | 'return buf.' + key + '(' + ['a', 'b', 'c'].join(',' ) + ')' 8 | 9 | return new Function(['buf', 'a', 'b', 'c'], code) 10 | } 11 | 12 | module.exports = proto 13 | 14 | for(var key in Buffer.prototype) { 15 | if(rex.test(key)) { 16 | proto[key] = buildFn(key) 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /node_modules/bops/subarray.js: -------------------------------------------------------------------------------- 1 | module.exports = function(source, from, to) { 2 | return arguments.length === 2 ? 3 | source.slice(from) : 4 | source.slice(from, to) 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/bops/test/create.js: -------------------------------------------------------------------------------- 1 | var test = require('tape') 2 | , binary = require('../index') 3 | 4 | test('create works as expected', function(assert) { 5 | var len = Math.random() * 0xFF & 0xFF 6 | len += 1 7 | assert.equal(binary.create(len).length, len) 8 | assert.end() 9 | }) 10 | -------------------------------------------------------------------------------- /node_modules/bops/test/index.js: -------------------------------------------------------------------------------- 1 | require('./copy') 2 | require('./create') 3 | require('./from') 4 | require('./join') 5 | require('./read') 6 | require('./subarray') 7 | require('./to') 8 | require('./write') 9 | -------------------------------------------------------------------------------- /node_modules/bops/test/is.js: -------------------------------------------------------------------------------- 1 | var test = require('tape') 2 | , binary = require('../index') 3 | 4 | test('is works', function(assert) { 5 | var yes = binary.from("Hello") 6 | , no = "World" 7 | , never = { weird: true } 8 | , noway = [ 42 ] 9 | 10 | assert.equal(binary.is(yes), true) 11 | assert.equal(binary.is(no), false) 12 | assert.equal(binary.is(never), false) 13 | assert.equal(binary.is(noway), false) 14 | assert.end() 15 | }) 16 | -------------------------------------------------------------------------------- /node_modules/bops/to.js: -------------------------------------------------------------------------------- 1 | module.exports = function(source, encoding) { 2 | return source.toString(encoding) 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/bops/typedarray/create.js: -------------------------------------------------------------------------------- 1 | module.exports = function(size) { 2 | return new Uint8Array(size) 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/bops/typedarray/is.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = function(buffer) { 3 | return buffer instanceof Uint8Array; 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/bops/typedarray/subarray.js: -------------------------------------------------------------------------------- 1 | module.exports = subarray 2 | 3 | function subarray(buf, from, to) { 4 | return buf.subarray(from || 0, to || buf.length) 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/chevrotain/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | The [ChangeLog](./docs/changes/CHANGELOG.md) has moved 2 | to the docs folder. 3 | -------------------------------------------------------------------------------- /node_modules/chevrotain/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015-2018 SAP SE or an SAP affiliate company. 2 | -------------------------------------------------------------------------------- /node_modules/chevrotain/diagrams/README.md: -------------------------------------------------------------------------------- 1 | See [online docs](https://sap.github.io/chevrotain/docs/guide/generating_syntax_diagrams.html). 2 | -------------------------------------------------------------------------------- /node_modules/chevrotain/lib/src/parse/constants.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | // TODO: can this be removed? where is it used? 4 | exports.IN = "_~IN~_"; 5 | //# sourceMappingURL=constants.js.map -------------------------------------------------------------------------------- /node_modules/chevrotain/lib/src/parse/parser/traits/parser_traits.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var parser_1 = require("../parser"); 4 | exports.Parser = parser_1.Parser; 5 | //# sourceMappingURL=parser_traits.js.map -------------------------------------------------------------------------------- /node_modules/chevrotain/lib/src/scan/tokens_constants.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.EOF_TOKEN_TYPE = 1; 4 | //# sourceMappingURL=tokens_constants.js.map -------------------------------------------------------------------------------- /node_modules/chevrotain/lib/src/version.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | // needs a separate module as this is required inside chevrotain productive code 4 | // and also in the entry point for webpack(api.ts). 5 | // A separate file avoids cyclic dependencies and webpack errors. 6 | exports.VERSION = "4.3.3"; 7 | //# sourceMappingURL=version.js.map -------------------------------------------------------------------------------- /node_modules/crc-32/types/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "lib": [ "es5" ], 5 | "noImplicitAny": true, 6 | "noImplicitThis": true, 7 | "strictNullChecks": false, 8 | "baseUrl": ".", 9 | "paths": { "crc-32": ["."] }, 10 | "types": [], 11 | "noEmit": true, 12 | "forceConsistentCasingInFileNames": true 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /node_modules/crc-32/types/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "dtslint/dtslint.json", 3 | "rules": { 4 | "whitespace": false, 5 | "no-sparse-arrays": false, 6 | "only-arrow-functions": false, 7 | "no-consecutive-blank-lines": false, 8 | "prefer-conditional-expression": false, 9 | "one-variable-per-declaration": false 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/diff/runtime.js: -------------------------------------------------------------------------------- 1 | require('babel-core/register')({ 2 | ignore: /\/lib\/|\/node_modules\// 3 | }); 4 | -------------------------------------------------------------------------------- /node_modules/fatfs/issue_28.js: -------------------------------------------------------------------------------- 1 | var fatfs = require("./"), 2 | imgVol = require("./img_volume.js"); 3 | 4 | var vol = imgVol.createDriverSync("/Users/natevw/Downloads/freedos722.img"); 5 | var fs = fatfs.createFileSystem(vol); 6 | 7 | //fs.on('ready', function () { console.log("READY"); }) 8 | //fs.on('error', function (err) { console.error(err); }) 9 | 10 | fs.mkdir("newdir", function(){ 11 | console.log("created"); 12 | }); 13 | -------------------------------------------------------------------------------- /node_modules/git-apply-delta/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | -------------------------------------------------------------------------------- /node_modules/globalyzer/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/node_modules/globalyzer/src/.DS_Store -------------------------------------------------------------------------------- /node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | try { 2 | var util = require('util'); 3 | /* istanbul ignore next */ 4 | if (typeof util.inherits !== 'function') throw ''; 5 | module.exports = util.inherits; 6 | } catch (e) { 7 | /* istanbul ignore next */ 8 | module.exports = require('./inherits_browser.js'); 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/isomorphic-git/dist/browser-tests.json: -------------------------------------------------------------------------------- 1 | [ 2 | "HeadlessChrome 0.0.0 (Linux 0.0.0)", 3 | "Firefox 67.0.0 (Ubuntu 0.0.0)", 4 | "Safari 11.1.2 (Mac OS X 10.13.6)", 5 | "Chrome Mobile 67.0.3396 (Android 7.1.1)", 6 | "Mobile Safari 11.0.0 (iOS 11.2.0)", 7 | "Edge 17.17134.0 (Windows 10 0.0.0)" 8 | ] -------------------------------------------------------------------------------- /node_modules/java-parser/node_modules/chevrotain/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | The [ChangeLog](./docs/changes/CHANGELOG.md) has moved 2 | to the docs folder. 3 | -------------------------------------------------------------------------------- /node_modules/java-parser/node_modules/chevrotain/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015-2018 SAP SE or an SAP affiliate company. 2 | -------------------------------------------------------------------------------- /node_modules/java-parser/node_modules/chevrotain/diagrams/README.md: -------------------------------------------------------------------------------- 1 | See [online docs](https://sap.github.io/chevrotain/docs/guide/generating_syntax_diagrams.html). 2 | -------------------------------------------------------------------------------- /node_modules/java-parser/node_modules/chevrotain/lib/src/parse/constants.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | // TODO: can this be removed? where is it used? 4 | exports.IN = "_~IN~_"; 5 | //# sourceMappingURL=constants.js.map -------------------------------------------------------------------------------- /node_modules/java-parser/node_modules/chevrotain/lib/src/parse/parser/traits/parser_traits.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var parser_1 = require("../parser"); 4 | exports.Parser = parser_1.Parser; 5 | //# sourceMappingURL=parser_traits.js.map -------------------------------------------------------------------------------- /node_modules/java-parser/node_modules/chevrotain/lib/src/scan/tokens_constants.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.EOF_TOKEN_TYPE = 1; 4 | //# sourceMappingURL=tokens_constants.js.map -------------------------------------------------------------------------------- /node_modules/java-parser/node_modules/chevrotain/lib/src/version.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | // needs a separate module as this is required inside chevrotain productive code 4 | // and also in the entry point for webpack(api.ts). 5 | // A separate file avoids cyclic dependencies and webpack errors. 6 | exports.VERSION = "4.3.3"; 7 | //# sourceMappingURL=version.js.map -------------------------------------------------------------------------------- /node_modules/java-parser/scripts/single-sample-runner.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/no-extraneous-dependencies, no-console */ 2 | /** 3 | * This Script is used to debug the parsing of **small** code snippets. 4 | */ 5 | "use strict"; 6 | 7 | const javaParserChev = require("../src/index"); 8 | 9 | const input = ` 10 | public @interface ConfigurationProperties {} 11 | `; 12 | 13 | javaParserChev.parse(input, "typeDeclaration"); 14 | -------------------------------------------------------------------------------- /node_modules/java-parser/src/lexer.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | const chevrotain = require("chevrotain"); 3 | const { allTokens } = require("./tokens"); 4 | 5 | const Lexer = chevrotain.Lexer; 6 | 7 | const JavaLexer = new Lexer(allTokens, { ensureOptimizations: true }); 8 | 9 | module.exports = JavaLexer; 10 | -------------------------------------------------------------------------------- /node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.12" 6 | - "iojs" 7 | before_install: 8 | - npm install -g npm@~1.4.6 9 | -------------------------------------------------------------------------------- /node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /node_modules/minimist/test/parse_modified.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('parse with modifier functions' , function (t) { 5 | t.plan(1); 6 | 7 | var argv = parse([ '-b', '123' ], { boolean: 'b' }); 8 | t.deepEqual(argv, { b: true, _: [123] }); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/minimist/test/stop_early.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('stops parsing on the first non-option when stopEarly is set', function (t) { 5 | var argv = parse(['--aaa', 'bbb', 'ccc', '--ddd'], { 6 | stopEarly: true 7 | }); 8 | 9 | t.deepEqual(argv, { 10 | aaa: 'bbb', 11 | _: ['ccc', '--ddd'] 12 | }); 13 | 14 | t.end(); 15 | }); 16 | -------------------------------------------------------------------------------- /node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /node_modules/minimisted/.bmp.yml: -------------------------------------------------------------------------------- 1 | --- 2 | version: 2.0.0 3 | commit: ":up: chore(version): bmp to v%.%.%" 4 | files: 5 | README.md: v%.%.% 6 | package.json: '"version": "%.%.%"' 7 | -------------------------------------------------------------------------------- /node_modules/minimisted/.editorconfig: -------------------------------------------------------------------------------- 1 | root=true 2 | [*] 3 | indent_style=space 4 | indent_size=2 5 | trim_trailing_whitespace=true 6 | insert_final_newline=true 7 | -------------------------------------------------------------------------------- /node_modules/minimisted/.npmignore: -------------------------------------------------------------------------------- 1 | # npm 2 | /node_modules 3 | /npm-debug.log 4 | 5 | # nyc 6 | /coverage 7 | /.nyc_output 8 | -------------------------------------------------------------------------------- /node_modules/minimisted/circle.yml: -------------------------------------------------------------------------------- 1 | machine: 2 | node: 3 | version: 4 4 | test: 5 | post: 6 | - npm run codecov 7 | -------------------------------------------------------------------------------- /node_modules/pako/index.js: -------------------------------------------------------------------------------- 1 | // Top level file is just a mixin of submodules & constants 2 | 'use strict'; 3 | 4 | var assign = require('./lib/utils/common').assign; 5 | 6 | var deflate = require('./lib/deflate'); 7 | var inflate = require('./lib/inflate'); 8 | var constants = require('./lib/zlib/constants'); 9 | 10 | var pako = {}; 11 | 12 | assign(pako, deflate, inflate, constants); 13 | 14 | module.exports = pako; 15 | -------------------------------------------------------------------------------- /node_modules/printj/types/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "lib": [ "es5", "dom" ], 5 | "noImplicitAny": true, 6 | "noImplicitThis": true, 7 | "strictNullChecks": false, 8 | "baseUrl": ".", 9 | "paths": { "printj": ["."] }, 10 | "types": [], 11 | "noEmit": true, 12 | "forceConsistentCasingInFileNames": true 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /node_modules/printj/types/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "dtslint/dtslint.json", 3 | "rules": { 4 | "whitespace": false, 5 | "no-sparse-arrays": false, 6 | "only-arrow-functions": false, 7 | "no-consecutive-blank-lines": false, 8 | "prefer-conditional-expression": false, 9 | "one-variable-per-declaration": false 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/readable-stream/lib/internal/streams/stream-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('events').EventEmitter; 2 | -------------------------------------------------------------------------------- /node_modules/readable-stream/lib/internal/streams/stream.js: -------------------------------------------------------------------------------- 1 | module.exports = require('stream'); 2 | -------------------------------------------------------------------------------- /node_modules/sha.js/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | os: 3 | - linux 4 | language: node_js 5 | node_js: 6 | - "4" 7 | - "5" 8 | - "6" 9 | - "7" 10 | env: 11 | matrix: 12 | - TEST_SUITE=unit 13 | matrix: 14 | include: 15 | - node_js: "7" 16 | env: TEST_SUITE=lint 17 | script: npm run $TEST_SUITE 18 | -------------------------------------------------------------------------------- /node_modules/simple-concat/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 'node' 4 | -------------------------------------------------------------------------------- /node_modules/simple-concat/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (stream, cb) { 2 | var chunks = [] 3 | stream.on('data', function (chunk) { 4 | chunks.push(chunk) 5 | }) 6 | stream.once('end', function () { 7 | if (cb) cb(null, Buffer.concat(chunks)) 8 | cb = null 9 | }) 10 | stream.once('error', function (err) { 11 | if (cb) cb(err) 12 | cb = null 13 | }) 14 | } 15 | -------------------------------------------------------------------------------- /node_modules/util-deprecate/History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.0.2 / 2015-10-07 3 | ================== 4 | 5 | * use try/catch when checking `localStorage` (#3, @kumavis) 6 | 7 | 1.0.1 / 2014-11-25 8 | ================== 9 | 10 | * browser: use `console.warn()` for deprecation calls 11 | * browser: more jsdocs 12 | 13 | 1.0.0 / 2014-04-30 14 | ================== 15 | 16 | * initial commit 17 | -------------------------------------------------------------------------------- /node_modules/util-deprecate/node.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * For Node.js, simply re-export the core `util.deprecate` function. 4 | */ 5 | 6 | module.exports = require('util').deprecate; 7 | -------------------------------------------------------------------------------- /node_modules/varint/encode.js: -------------------------------------------------------------------------------- 1 | module.exports = encode 2 | 3 | var MSB = 0x80 4 | , REST = 0x7F 5 | , MSBALL = ~REST 6 | 7 | function encode(num, out, offset) { 8 | out = out || [] 9 | offset = offset || 0 10 | 11 | while(num & MSBALL) { 12 | out[offset++] = (num & 0xFF) | MSB 13 | num >>>= 7 14 | } 15 | out[offset] = num 16 | return out 17 | } -------------------------------------------------------------------------------- /node_modules/xok/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (obj) { 2 | Array.prototype.slice.call(arguments, 1).forEach(function (ext) { 3 | if (ext) Object.keys(ext).forEach(function (key) { 4 | obj[key] = ext[key]; 5 | }); 6 | }); 7 | return obj; 8 | }; -------------------------------------------------------------------------------- /plugins/ProjectsListView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/plugins/ProjectsListView.css -------------------------------------------------------------------------------- /plugins/beep.css: -------------------------------------------------------------------------------- 1 | .BeepView iframe { 2 | position: absolute; 3 | top: 0; 4 | left: 0; 5 | right: 0; 6 | bottom: 0; 7 | width: 100%; 8 | height: 100%; 9 | box-sizing: border-box; 10 | border: none; 11 | } 12 | -------------------------------------------------------------------------------- /plugins/dbg.css: -------------------------------------------------------------------------------- 1 | .unconditional{ 2 | border-radius: 20px 0px 0px 20px; 3 | box-shadow: 0px 0px 1px 1px red inset; 4 | } 5 | 6 | .highlight{ 7 | background-color: aquamarine !important; 8 | } 9 | 10 | .invalid{ 11 | border-radius: 20px 0px 0px 20px; 12 | box-shadow: 0px 0px 1px 1px yellow inset; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/dir.css: -------------------------------------------------------------------------------- 1 | .frame > ul.DirectoryView { 2 | position: absolute; 3 | width: 100%; 4 | height: 100%; 5 | overflow: auto; 6 | } 7 | 8 | .frame.DirectoryView li>li { 9 | margin-left: 20px; 10 | } 11 | -------------------------------------------------------------------------------- /plugins/discord.js: -------------------------------------------------------------------------------- 1 | APP.addPlugin("Discord", [], _=>{ 2 | APP.add({ 3 | 4 | queryMenus(){ 5 | APP.addMenu(" femto", { 6 | "Ask FManga":_=>{ 7 | require('nw.gui').Shell.openExternal("https://discord.gg/TtqQcVA"); 8 | } 9 | }); 10 | }, 11 | 12 | }); 13 | 14 | }); 15 | -------------------------------------------------------------------------------- /plugins/image.css: -------------------------------------------------------------------------------- 1 | .ImageView img { 2 | width: 100%; 3 | image-rendering: pixelated; 4 | } 5 | 6 | .ImageView iframe { 7 | position: absolute; 8 | top: 0; 9 | left: 0; 10 | right: 0; 11 | bottom: 0; 12 | width: 100%; 13 | height: 100%; 14 | box-sizing: border-box; 15 | border: none; 16 | } 17 | -------------------------------------------------------------------------------- /plugins/profiler.css: -------------------------------------------------------------------------------- 1 | .frame.ProfilerView { 2 | max-height: 100%; 3 | } 4 | 5 | .ProfilerContainer li, .ProfilerContainer ul, .ProfilerView, .ProfilerContainer { 6 | max-width: 350px; 7 | margin: 0; 8 | padding: 0; 9 | overflow: auto; 10 | } 11 | -------------------------------------------------------------------------------- /plugins/tracker.css: -------------------------------------------------------------------------------- 1 | .BassoonView iframe { 2 | position: absolute; 3 | top: 0; 4 | left: 0; 5 | right: 0; 6 | bottom: 0; 7 | width: 100%; 8 | height: 100%; 9 | box-sizing: border-box; 10 | border: none; 11 | } 12 | -------------------------------------------------------------------------------- /projects/Hello CPP/Smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/Hello CPP/Smile.png -------------------------------------------------------------------------------- /projects/Hello CPP/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include "Smile.h" 4 | 5 | using PC=Pokitto::Core; 6 | using PD=Pokitto::Display; 7 | using PB=Pokitto::Buttons; 8 | 9 | void init(){ 10 | LOG("Hello World!\n"); 11 | PD::persistence = true; 12 | PD::invisiblecolor = 0; 13 | } 14 | 15 | void update(){ 16 | PD::drawBitmap(rand()%(PD::width-32), rand()%(PD::height-32), Smile); 17 | } 18 | -------------------------------------------------------------------------------- /projects/Hello Java/Hello Java.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/Hello Java/Hello Java.bin -------------------------------------------------------------------------------- /projects/Hello Java/Hello Java.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/Hello Java/Hello Java.elf -------------------------------------------------------------------------------- /projects/Hello Java/images/Pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/Hello Java/images/Pattern.png -------------------------------------------------------------------------------- /projects/Hello Java/sounds/DogBark1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/Hello Java/sounds/DogBark1.wav -------------------------------------------------------------------------------- /projects/Hello Java/sounds/DogBark2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/Hello Java/sounds/DogBark2.wav -------------------------------------------------------------------------------- /projects/Hello Java/sounds/DogBark3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/Hello Java/sounds/DogBark3.wav -------------------------------------------------------------------------------- /projects/Hello Java/sounds/hope.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/Hello Java/sounds/hope.raw -------------------------------------------------------------------------------- /projects/Hello Java/sprites/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/Hello Java/sprites/dog.png -------------------------------------------------------------------------------- /projects/Hello MicroPython/main.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/Hello MicroPython/main.mpy -------------------------------------------------------------------------------- /projects/Hello MicroPython/micropython/UartSerialPrint.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "Pokitto.h" 3 | #include 4 | #include 5 | 6 | extern "C" int pc_putc(int c) { return putchar(c);} 7 | extern "C" int pc_getc() {return 0;} 8 | extern "C" void pc_puts(const char* strWithNull) { puts(strWithNull); } 9 | extern "C" void pc_putsn(const char* str, int len) {} 10 | extern "C" int pc_printf(const char* format, ...) {return 0;} 11 | 12 | -------------------------------------------------------------------------------- /projects/Hello MicroPython/micropython/libmicropython.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/Hello MicroPython/micropython/libmicropython.a -------------------------------------------------------------------------------- /projects/P-Type/P-Type.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/P-Type.bin -------------------------------------------------------------------------------- /projects/P-Type/P-Type.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/P-Type.elf -------------------------------------------------------------------------------- /projects/P-Type/entities/Bullet.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void Bullet::hit() { 4 | ticksToLive = 0; 5 | StateGame::get().screenShake += 2.0f; 6 | } 7 | -------------------------------------------------------------------------------- /projects/P-Type/global.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include "entities/Entity.h" 5 | #include "states/State.h" 6 | 7 | using PC = Pokitto::Core; 8 | using PD = Pokitto::Display; 9 | using PB = Pokitto::Buttons; 10 | using PS = Pokitto::Sound; 11 | 12 | namespace shared { 13 | inline Ships::Animation playerAnim; 14 | } 15 | -------------------------------------------------------------------------------- /projects/P-Type/images/gameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/images/gameover.png -------------------------------------------------------------------------------- /projects/P-Type/main.cpp: -------------------------------------------------------------------------------- 1 | #include "global.h" 2 | #include 3 | 4 | void init(){ 5 | PD::loadRGBPalette(miloslav); 6 | PD::setFont(fontDonut); 7 | 8 | // Eric Atwell (@Spectrumnist) - Dreams 9 | // https://twitter.com/Spectrumnist/status/1245991328820776960 10 | PS::playMusicStream("music/drm.raw", 0); 11 | } 12 | 13 | void update(){ 14 | stateMachine.update(); 15 | } 16 | -------------------------------------------------------------------------------- /projects/P-Type/maps/UI-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/maps/UI-sheet.png -------------------------------------------------------------------------------- /projects/P-Type/maps/calciumtrice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/maps/calciumtrice.png -------------------------------------------------------------------------------- /projects/P-Type/music/drm.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/music/drm.raw -------------------------------------------------------------------------------- /projects/P-Type/sfx/Boop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sfx/Boop.wav -------------------------------------------------------------------------------- /projects/P-Type/sprites.cpp: -------------------------------------------------------------------------------- 1 | __asm__(".global dude\ndude:\n.incbin \"sprites/Dude.bin\""); 2 | __asm__(".global bulletSprite\nbulletSprite:\n.incbin \"sprites/bulletSprite.bin\""); 3 | __asm__(".global enemySprite\nenemySprite:\n.incbin \"sprites/enemySprite.bin\""); 4 | __asm__(".global heads\nheads:\n.incbin \"sprites/heads.bin\""); 5 | __asm__(".global ships\nships:\n.incbin \"sprites/ships.bin\""); 6 | __asm__(".global start\nstart:\n.incbin \"sprites/start.bin\""); -------------------------------------------------------------------------------- /projects/P-Type/sprites/Dude.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/Dude.bin -------------------------------------------------------------------------------- /projects/P-Type/sprites/Dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/Dude.png -------------------------------------------------------------------------------- /projects/P-Type/sprites/bulletSprite.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/bulletSprite.bin -------------------------------------------------------------------------------- /projects/P-Type/sprites/bulletSprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/bulletSprite.png -------------------------------------------------------------------------------- /projects/P-Type/sprites/bullets.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/bullets.aseprite -------------------------------------------------------------------------------- /projects/P-Type/sprites/enemySprite.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/enemySprite.aseprite -------------------------------------------------------------------------------- /projects/P-Type/sprites/enemySprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/enemySprite.png -------------------------------------------------------------------------------- /projects/P-Type/sprites/heads.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/heads.aseprite -------------------------------------------------------------------------------- /projects/P-Type/sprites/heads.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/heads.bin -------------------------------------------------------------------------------- /projects/P-Type/sprites/heads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/heads.png -------------------------------------------------------------------------------- /projects/P-Type/sprites/ships.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/ships.aseprite -------------------------------------------------------------------------------- /projects/P-Type/sprites/ships.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/ships.bin -------------------------------------------------------------------------------- /projects/P-Type/sprites/ships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/ships.png -------------------------------------------------------------------------------- /projects/P-Type/sprites/start.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/start.aseprite -------------------------------------------------------------------------------- /projects/P-Type/sprites/start.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/start.bin -------------------------------------------------------------------------------- /projects/P-Type/sprites/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/projects/P-Type/sprites/start.png -------------------------------------------------------------------------------- /projects/P-Type/states/State.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include "StateIntro.h" 5 | #include "StateGame.h" 6 | #include "StateGameOver.h" 7 | 8 | inline StateMachine< 9 | StateIntro, 10 | StateGame, 11 | StateGameOver 12 | > stateMachine; 13 | 14 | template 15 | DerivedType& State::get() { 16 | return stateMachine.getState(); 17 | } 18 | -------------------------------------------------------------------------------- /projects/P-Type/states/StateGameOver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | class StateGameOver : public State { 5 | Entity head[4]; 6 | Entity start; 7 | 8 | bool debounce = false; 9 | Tilemap tilemap; 10 | uint8_t map[14*11] = {}; 11 | uint32_t time = 0; 12 | 13 | void updateMap(); 14 | 15 | public: 16 | StateGameOver(); 17 | void update(); 18 | }; 19 | -------------------------------------------------------------------------------- /projects/P-Type/states/StateIntro.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | class StateIntro : public State { 5 | Entity head[4]; 6 | Entity start; 7 | 8 | uint32_t selection = 0; 9 | bool debounce = false; 10 | Tilemap tilemap; 11 | uint8_t map[14*11] = {}; 12 | uint32_t time = 0; 13 | 14 | void updateMap(); 15 | 16 | public: 17 | StateIntro(); 18 | void update(); 19 | }; 20 | -------------------------------------------------------------------------------- /templates/1-C++ Game/Smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/1-C++ Game/Smile.png -------------------------------------------------------------------------------- /templates/1-C++ Game/main.cpp: -------------------------------------------------------------------------------- 1 | #include "Pokitto.h" 2 | #include "Smile.h" 3 | 4 | using PC = Pokitto::Core; 5 | using PD = Pokitto::Display; 6 | 7 | void init() { 8 | PD::persistence = true; 9 | PD::invisiblecolor = 0; 10 | } 11 | 12 | void update() { 13 | PD::drawBitmap(rand() % (PD::width - 32), rand() % (PD::height - 32), Smile); 14 | } -------------------------------------------------------------------------------- /templates/2-C++ Tiles+Sprites Game/Smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/2-C++ Tiles+Sprites Game/Smile.png -------------------------------------------------------------------------------- /templates/2-C++ Tiles+Sprites Game/maps/basictiles_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/2-C++ Tiles+Sprites Game/maps/basictiles_2.png -------------------------------------------------------------------------------- /templates/2-C++ Tiles+Sprites Game/maps/magecity_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/2-C++ Tiles+Sprites Game/maps/magecity_1.png -------------------------------------------------------------------------------- /templates/2-C++ Tiles+Sprites Game/sprites.cpp: -------------------------------------------------------------------------------- 1 | __asm__(".global dude\ndude:\n.incbin \"sprites/Dude.bin\""); -------------------------------------------------------------------------------- /templates/2-C++ Tiles+Sprites Game/sprites/Dude.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/2-C++ Tiles+Sprites Game/sprites/Dude.bin -------------------------------------------------------------------------------- /templates/2-C++ Tiles+Sprites Game/sprites/Dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/2-C++ Tiles+Sprites Game/sprites/Dude.png -------------------------------------------------------------------------------- /templates/3-MicroPython/micropython/UartSerialPrint.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "Pokitto.h" 3 | #include 4 | #include 5 | 6 | extern "C" int pc_putc(int c) { return putchar(c);} 7 | extern "C" int pc_getc() {return 0;} 8 | extern "C" void pc_puts(const char* strWithNull) { puts(strWithNull); } 9 | extern "C" void pc_putsn(const char* str, int len) {} 10 | extern "C" int pc_printf(const char* format, ...) {return 0;} 11 | 12 | -------------------------------------------------------------------------------- /templates/3-MicroPython/micropython/libmicropython.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/3-MicroPython/micropython/libmicropython.a -------------------------------------------------------------------------------- /templates/4-Java Game/Pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/4-Java Game/Pattern.png -------------------------------------------------------------------------------- /templates/4-Java Game/__flags.json: -------------------------------------------------------------------------------- 1 | [ 2 | ["div", [ 3 | ["input", {"id":"filesToEdit", "type":"hidden", "value":"project.json"}] 4 | ]] 5 | ] 6 | -------------------------------------------------------------------------------- /templates/4-Java Game/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/4-Java Game/dog.png -------------------------------------------------------------------------------- /templates/5-MiniLib Project/main.cpp: -------------------------------------------------------------------------------- 1 | #include "PokittoMini.h" 2 | 3 | int main(){ 4 | enableDAC(); 5 | int i=0; 6 | int x=0, t=0; 7 | while(true){ 8 | if(aBtn() || bBtn() || cBtn() || upBtn() || downBtn() || leftBtn() || rightBtn()) 9 | writePixel(i++); 10 | if( !x-- ){ 11 | writeDAC((t>>5)|(t>>4)|t++); 12 | x = 500; 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /templates/6-Bitsy Project/font/google-material-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/6-Bitsy Project/font/google-material-icons.woff2 -------------------------------------------------------------------------------- /templates/6-Bitsy Project/font/google-nunito-latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/6-Bitsy Project/font/google-nunito-latin.woff2 -------------------------------------------------------------------------------- /templates/6-Bitsy Project/font/google-nunito-latinext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/6-Bitsy Project/font/google-nunito-latinext.woff2 -------------------------------------------------------------------------------- /templates/6-Bitsy Project/font/google-nunito-vietnamese.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/6-Bitsy Project/font/google-nunito-vietnamese.woff2 -------------------------------------------------------------------------------- /templates/6-Bitsy Project/icons/bitsy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/6-Bitsy Project/icons/bitsy.icns -------------------------------------------------------------------------------- /templates/6-Bitsy Project/icons/bitsy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/6-Bitsy Project/icons/bitsy.ico -------------------------------------------------------------------------------- /templates/6-Bitsy Project/icons/bitsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/6-Bitsy Project/icons/bitsy.png -------------------------------------------------------------------------------- /templates/6-Bitsy Project/image/bitsy-itch-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/6-Bitsy Project/image/bitsy-itch-cover.png -------------------------------------------------------------------------------- /templates/6-Bitsy Project/image/bitsy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/6-Bitsy Project/image/bitsy.icns -------------------------------------------------------------------------------- /templates/6-Bitsy Project/image/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/6-Bitsy Project/image/cat.png -------------------------------------------------------------------------------- /templates/6-Bitsy Project/image/cat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/6-Bitsy Project/image/cat2.png -------------------------------------------------------------------------------- /templates/6-Bitsy Project/image/cat5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/templates/6-Bitsy Project/image/cat5.png -------------------------------------------------------------------------------- /templates/6-Bitsy Project/script/util.js: -------------------------------------------------------------------------------- 1 | /* UTILS 2 | miscellaneous utility functions for the editor 3 | TODO: encapsulate in an object maybe? or is that overkill? 4 | */ 5 | 6 | function clamp(val, min, max) { 7 | return Math.max(Math.min(val, max), min); 8 | } -------------------------------------------------------------------------------- /www/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2 -------------------------------------------------------------------------------- /www/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2 -------------------------------------------------------------------------------- /www/beepbox/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/beepbox/apple-touch-icon.png -------------------------------------------------------------------------------- /www/beepbox/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #603cba 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /www/beepbox/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/beepbox/favicon.ico -------------------------------------------------------------------------------- /www/beepbox/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/beepbox/icon_32.png -------------------------------------------------------------------------------- /www/beepbox/icon_maskable_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/beepbox/icon_maskable_192.png -------------------------------------------------------------------------------- /www/beepbox/icon_shadow_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/beepbox/icon_shadow_192.png -------------------------------------------------------------------------------- /www/beepbox/icon_windows_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/beepbox/icon_windows_150.png -------------------------------------------------------------------------------- /www/beepbox/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /player/ 3 | Disallow: /competition/ 4 | -------------------------------------------------------------------------------- /www/blank.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/blank.img -------------------------------------------------------------------------------- /www/capture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/capture.gif -------------------------------------------------------------------------------- /www/docs/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/bc_s.png -------------------------------------------------------------------------------- /www/docs/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/bdwn.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Cookie.js: -------------------------------------------------------------------------------- 1 | var classfemto_1_1Cookie = 2 | [ 3 | [ "Cookie", "classfemto_1_1Cookie.html#ae2c7979107fdd24a9f22c200c581e3ec", null ], 4 | [ "begin", "classfemto_1_1Cookie.html#a59461d56abb2a377dff82004680ab644", null ] 5 | ]; -------------------------------------------------------------------------------- /www/docs/classfemto_1_1FrameRef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1FrameRef.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1FrameRef__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5cbbe4fe0033249f7461c92c89231d2e -------------------------------------------------------------------------------- /www/docs/classfemto_1_1FrameRef__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1FrameRef__coll__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1FrameRef__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | ef5a08871b6b769b87a312b3565b0528 -------------------------------------------------------------------------------- /www/docs/classfemto_1_1FrameRef__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1FrameRef__inherit__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1Game.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Game__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5f53dd036b1b3267d345c6e3c39c01c2 -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Game__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1Game__coll__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Game__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 3f8cdd7e94a0059b19d05a4d88991941 -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Game__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1Game__inherit__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1Image.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Image__coll__graph.md5: -------------------------------------------------------------------------------- 1 | c50b6e1a2dbbee8c9c64c2cbe43c46e0 -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Image__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1Image__coll__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Image__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 2690d9d91707d794314787c95cf05651 -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Image__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1Image__inherit__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Prompt.js: -------------------------------------------------------------------------------- 1 | var classfemto_1_1Prompt = 2 | [ 3 | [ "options", "classfemto_1_1Prompt.html#aec3ff7e1e847a04531ad6ad5e0443eb8", null ], 4 | [ "party", "classfemto_1_1Prompt.html#a17b47853671b45412301c6460b920afe", null ] 5 | ]; -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1Sprite.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Sprite__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 0506ab89cd53c0d4cc44955540b3520a -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Sprite__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1Sprite__coll__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Sprite__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 9d26374e5fb099c8dec722a3634c248b -------------------------------------------------------------------------------- /www/docs/classfemto_1_1Sprite__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1Sprite__inherit__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1StateMachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1StateMachine.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1StateMachine__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 2b223d447234d70168826df1d8237471 -------------------------------------------------------------------------------- /www/docs/classfemto_1_1StateMachine__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1StateMachine__coll__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1StateMachine__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | f57751a0c808d39529615d4c922a733e -------------------------------------------------------------------------------- /www/docs/classfemto_1_1StateMachine__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1StateMachine__inherit__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1State__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 7127aab25d3491b57df265aa66d97adb -------------------------------------------------------------------------------- /www/docs/classfemto_1_1State__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1State__inherit__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1StringPair.js: -------------------------------------------------------------------------------- 1 | var classfemto_1_1StringPair = 2 | [ 3 | [ "key", "classfemto_1_1StringPair.html#a527245645771fe48c89a8f3154c5ca34", null ], 4 | [ "value", "classfemto_1_1StringPair.html#a637520c157d00b748f8fed1337851691", null ] 5 | ]; -------------------------------------------------------------------------------- /www/docs/classfemto_1_1TileSet.js: -------------------------------------------------------------------------------- 1 | var classfemto_1_1TileSet = 2 | [ 3 | [ "isTransparent", "classfemto_1_1TileSet.html#ae969a8c7cc4106866330d6474bd36db5", null ], 4 | [ "flags", "classfemto_1_1TileSet.html#a9156a2f317361123bc90e4bada55c464", null ], 5 | [ "tileId", "classfemto_1_1TileSet.html#a34ed1fb2ef9a1682b8226b890f3dd749", null ] 6 | ]; -------------------------------------------------------------------------------- /www/docs/classfemto_1_1TileSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1TileSet.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1XMLNode__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 2cf140d6ec534d57c0396250f0f95739 -------------------------------------------------------------------------------- /www/docs/classfemto_1_1XMLNode__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1XMLNode__coll__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1hardware_1_1EXT__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 586615ef4e622702a8b0de448134bcc0 -------------------------------------------------------------------------------- /www/docs/classfemto_1_1hardware_1_1EXT__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1hardware_1_1EXT__coll__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1input_1_1Button__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 50271326a877b7f4aac89178f0c874a2 -------------------------------------------------------------------------------- /www/docs/classfemto_1_1input_1_1Button__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1input_1_1Button__coll__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1Direct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1mode_1_1Direct.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1Direct4BPP.js: -------------------------------------------------------------------------------- 1 | var classfemto_1_1mode_1_1Direct4BPP = 2 | [ 3 | [ "Direct4BPP", "classfemto_1_1mode_1_1Direct4BPP.html#ad4dbc7af78128fa12c8df82edb4f1538", null ], 4 | [ "loadPalette", "classfemto_1_1mode_1_1Direct4BPP.html#a14190c33cda570e632014e4b5990a002", null ], 5 | [ "palette", "classfemto_1_1mode_1_1Direct4BPP.html#aaa6aeebf88e0f10b36cecaddc760cebb", null ] 6 | ]; -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1Direct4BPP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1mode_1_1Direct4BPP.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1Direct__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 04a29d9aa5aa78cfdfb957ace2b50c1a -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1Direct__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1mode_1_1Direct__coll__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1Direct__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 122b160fea490c57411c9ebdf2bd66a2 -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1Direct__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1mode_1_1Direct__inherit__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1HiRes16Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1mode_1_1HiRes16Color.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1HiRes16Color__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 0e41f567ad99cd12a42141819dfb4a53 -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1HiRes16Color__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1mode_1_1HiRes16Color__coll__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1HiRes16Color__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 7eeb91d9d7ed7240109709f0c5399084 -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1HiRes16Color__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1mode_1_1HiRes16Color__inherit__graph.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1LowRes16Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1mode_1_1LowRes16Color.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1LowRes256Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1mode_1_1LowRes256Color.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1ScreenMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1mode_1_1ScreenMode.png -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1ScreenMode__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 243a7d2271155d1dd7d063cce20a2581 -------------------------------------------------------------------------------- /www/docs/classfemto_1_1mode_1_1ScreenMode__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classfemto_1_1mode_1_1ScreenMode__inherit__graph.png -------------------------------------------------------------------------------- /www/docs/classjava_1_1lang_1_1Math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classjava_1_1lang_1_1Math.png -------------------------------------------------------------------------------- /www/docs/classjava_1_1lang_1_1Math__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 628ba88d017606001fd1178a68447e6d -------------------------------------------------------------------------------- /www/docs/classjava_1_1lang_1_1Math__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classjava_1_1lang_1_1Math__coll__graph.png -------------------------------------------------------------------------------- /www/docs/classjava_1_1lang_1_1Math__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 4889365be0701cfe0cdd4579334cc23e -------------------------------------------------------------------------------- /www/docs/classjava_1_1lang_1_1Math__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classjava_1_1lang_1_1Math__inherit__graph.png -------------------------------------------------------------------------------- /www/docs/classjava_1_1lang_1_1Runtime.js: -------------------------------------------------------------------------------- 1 | var classjava_1_1lang_1_1Runtime = 2 | [ 3 | [ "availableProcessors", "classjava_1_1lang_1_1Runtime.html#a3b132994e4a83dedb3bca276fe35511a", null ], 4 | [ "freeMemory", "classjava_1_1lang_1_1Runtime.html#a6eb1a64eb74c0b35a5f3c3c88be2e488", null ], 5 | [ "totalMemory", "classjava_1_1lang_1_1Runtime.html#a5d6ce9d1217670c6af50eb45b044c6a8", null ] 6 | ]; -------------------------------------------------------------------------------- /www/docs/classjava_1_1lang_1_1System.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classjava_1_1lang_1_1System.png -------------------------------------------------------------------------------- /www/docs/classjava_1_1lang_1_1System__coll__graph.md5: -------------------------------------------------------------------------------- 1 | dcda6cf74856df50fc9bbd7a570e8182 -------------------------------------------------------------------------------- /www/docs/classjava_1_1lang_1_1System__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classjava_1_1lang_1_1System__coll__graph.png -------------------------------------------------------------------------------- /www/docs/classjava_1_1lang_1_1System__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 3c444699f70d95f254dd5617d10522ba -------------------------------------------------------------------------------- /www/docs/classjava_1_1lang_1_1System__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classjava_1_1lang_1_1System__inherit__graph.png -------------------------------------------------------------------------------- /www/docs/classjava_1_1util_1_1Arrays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classjava_1_1util_1_1Arrays.png -------------------------------------------------------------------------------- /www/docs/classjava_1_1util_1_1Arrays__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 38d5d52614350ee52a3df9f63f149a3b -------------------------------------------------------------------------------- /www/docs/classjava_1_1util_1_1Arrays__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classjava_1_1util_1_1Arrays__coll__graph.png -------------------------------------------------------------------------------- /www/docs/classjava_1_1util_1_1Arrays__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | a482e10db99db4680dd81d918fc99174 -------------------------------------------------------------------------------- /www/docs/classjava_1_1util_1_1Arrays__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/classjava_1_1util_1_1Arrays__inherit__graph.png -------------------------------------------------------------------------------- /www/docs/classjava_1_1util_1_1Random.js: -------------------------------------------------------------------------------- 1 | var classjava_1_1util_1_1Random = 2 | [ 3 | [ "Random", "classjava_1_1util_1_1Random.html#ac8db3eb58101b7d7e26b8cefdb88ecee", null ], 4 | [ "Random", "classjava_1_1util_1_1Random.html#a2215ea54920ee0bb5bc33ece78fe100b", null ], 5 | [ "next", "classjava_1_1util_1_1Random.html#a57f3e047398e65d249ebdd81c7b8b4ad", null ], 6 | [ "setSeed", "classjava_1_1util_1_1Random.html#a7793a535ab59b44997d631429451171f", null ] 7 | ]; -------------------------------------------------------------------------------- /www/docs/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/closed.png -------------------------------------------------------------------------------- /www/docs/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/doc.png -------------------------------------------------------------------------------- /www/docs/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/doxygen.png -------------------------------------------------------------------------------- /www/docs/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/folderclosed.png -------------------------------------------------------------------------------- /www/docs/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/folderopen.png -------------------------------------------------------------------------------- /www/docs/graph_legend.md5: -------------------------------------------------------------------------------- 1 | 387ff8eb65306fa251338d3c9bd7bfff -------------------------------------------------------------------------------- /www/docs/graph_legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/graph_legend.png -------------------------------------------------------------------------------- /www/docs/index.js: -------------------------------------------------------------------------------- 1 | var index = 2 | [ 3 | [ "Pokitto intervalometer", "intervalometer.html", null ], 4 | [ "Sine and cosine graphical representation", "sincosgraphical.html", null ] 5 | ]; -------------------------------------------------------------------------------- /www/docs/interfacefemto_1_1CPP.js: -------------------------------------------------------------------------------- 1 | var interfacefemto_1_1CPP = 2 | [ 3 | [ "include", "interfacefemto_1_1CPP.html#a86317671f37aed5a4ecc672e8fdbb934", null ] 4 | ]; -------------------------------------------------------------------------------- /www/docs/interfacefemto_1_1hardware_1_1IRQ.js: -------------------------------------------------------------------------------- 1 | var interfacefemto_1_1hardware_1_1IRQ = 2 | [ 3 | [ "name", "interfacefemto_1_1hardware_1_1IRQ.html#ae7e179a94d0a55d15570c72a2621bbbe", null ] 4 | ]; -------------------------------------------------------------------------------- /www/docs/interfacejava_1_1lang_1_1Runnable.js: -------------------------------------------------------------------------------- 1 | var interfacejava_1_1lang_1_1Runnable = 2 | [ 3 | [ "run", "interfacejava_1_1lang_1_1Runnable.html#afade27ccdb36aa09285bed95f8b40c9a", null ] 4 | ]; -------------------------------------------------------------------------------- /www/docs/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/nav_f.png -------------------------------------------------------------------------------- /www/docs/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/nav_g.png -------------------------------------------------------------------------------- /www/docs/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/nav_h.png -------------------------------------------------------------------------------- /www/docs/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/open.png -------------------------------------------------------------------------------- /www/docs/search/all_12.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['up_118',['Up',['../classfemto_1_1input_1_1Button.html#a5e1ecd39f82979f68e205422072c3664',1,'femto::input::Button']]], 4 | ['update_119',['update',['../classfemto_1_1sound_1_1Procedural.html#ae9a66a5b3c8f03b647a8a015635f42b6',1,'femto.sound.Procedural.update()'],['../classfemto_1_1State.html#afae9ef243503157dbea6185f40e5a93e',1,'femto.State.update()']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /www/docs/search/all_13.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['vector4_120',['Vector4',['../classmath_1_1Vector4.html',1,'math']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/all_15.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['xmlnode_122',['XMLNode',['../classfemto_1_1XMLNode.html',1,'femto']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/all_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['justpressed_55',['justPressed',['../classfemto_1_1input_1_1Button.html#a7b3af737a8aa34e8ba3c47bb2ca46dc8',1,'femto::input::Button']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/all_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['next_69',['next',['../classjava_1_1util_1_1Random.html#a57f3e047398e65d249ebdd81c7b8b4ad',1,'java::util::Random']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/all_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['onirq_70',['onIRQ',['../classfemto_1_1sound_1_1Mixer.html#ab01c8e280472c6ac87a543f67c022ad8',1,'femto::sound::Mixer']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/classes_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['arrays_123',['Arrays',['../classjava_1_1util_1_1Arrays.html',1,'java::util']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/classes_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['button_124',['Button',['../classfemto_1_1input_1_1Button.html',1,'femto::input']]], 4 | ['buttonlistener_125',['ButtonListener',['../classfemto_1_1input_1_1ButtonListener.html',1,'femto::input']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /www/docs/search/classes_10.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['xmlnode_163',['XMLNode',['../classfemto_1_1XMLNode.html',1,'femto']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/classes_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['cookie_126',['Cookie',['../classfemto_1_1Cookie.html',1,'femto']]], 4 | ['cpp_127',['CPP',['../interfacefemto_1_1CPP.html',1,'femto']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /www/docs/search/classes_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['date_128',['Date',['../classjava_1_1util_1_1Date.html',1,'java::util']]], 4 | ['direct_129',['Direct',['../classfemto_1_1mode_1_1Direct.html',1,'femto::mode']]], 5 | ['direct4bpp_130',['Direct4BPP',['../classfemto_1_1mode_1_1Direct4BPP.html',1,'femto::mode']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /www/docs/search/classes_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['eeprom_131',['EEPROM',['../classfemto_1_1hardware_1_1EEPROM.html',1,'femto::hardware']]], 4 | ['exception_132',['Exception',['../classjava_1_1lang_1_1Exception.html',1,'java::lang']]], 5 | ['ext_133',['EXT',['../classfemto_1_1hardware_1_1EXT.html',1,'femto::hardware']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /www/docs/search/classes_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['frameref_134',['FrameRef',['../classfemto_1_1FrameRef.html',1,'femto']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/classes_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['game_135',['Game',['../classfemto_1_1Game.html',1,'femto']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/classes_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['hires16color_136',['HiRes16Color',['../classfemto_1_1mode_1_1HiRes16Color.html',1,'femto::mode']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/classes_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['image_137',['Image',['../classfemto_1_1Image.html',1,'femto']]], 4 | ['integer_138',['Integer',['../classjava_1_1lang_1_1Integer.html',1,'java::lang']]], 5 | ['irq_139',['IRQ',['../interfacefemto_1_1hardware_1_1IRQ.html',1,'femto::hardware']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /www/docs/search/classes_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['lowres16color_140',['LowRes16Color',['../classfemto_1_1mode_1_1LowRes16Color.html',1,'femto::mode']]], 4 | ['lowres256color_141',['LowRes256Color',['../classfemto_1_1mode_1_1LowRes256Color.html',1,'femto::mode']]], 5 | ['lpc11u68_142',['LPC11U68',['../classfemto_1_1hardware_1_1LPC11U68.html',1,'femto::hardware']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /www/docs/search/classes_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['math_143',['Math',['../classjava_1_1lang_1_1Math.html',1,'java::lang']]], 4 | ['matrix4_144',['Matrix4',['../classmath_1_1Matrix4.html',1,'math']]], 5 | ['mixer_145',['Mixer',['../classfemto_1_1sound_1_1Mixer.html',1,'femto::sound']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /www/docs/search/classes_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['procedural_146',['Procedural',['../classfemto_1_1sound_1_1Procedural.html',1,'femto::sound']]], 4 | ['prompt_147',['Prompt',['../classfemto_1_1Prompt.html',1,'femto']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /www/docs/search/classes_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['random_148',['Random',['../classjava_1_1util_1_1Random.html',1,'java::util']]], 4 | ['runnable_149',['Runnable',['../interfacejava_1_1lang_1_1Runnable.html',1,'java::lang']]], 5 | ['runtime_150',['Runtime',['../classjava_1_1lang_1_1Runtime.html',1,'java::lang']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /www/docs/search/classes_e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['thread_159',['Thread',['../classjava_1_1lang_1_1Thread.html',1,'java::lang']]], 4 | ['tileset_160',['TileSet',['../classfemto_1_1TileSet.html',1,'femto']]], 5 | ['timer_161',['Timer',['../classfemto_1_1hardware_1_1Timer.html',1,'femto::hardware']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /www/docs/search/classes_f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['vector4_162',['Vector4',['../classmath_1_1Vector4.html',1,'math']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/search/close.png -------------------------------------------------------------------------------- /www/docs/search/functions_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['before_169',['before',['../classjava_1_1util_1_1Date.html#a3be6baaf103900f8f9c5a04296468b07',1,'java::util::Date']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/functions_11.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['todegrees_227',['toDegrees',['../classjava_1_1lang_1_1Math.html#a1a1a86a985991f3fa0bc097969a49b65',1,'java::lang::Math']]], 4 | ['toradians_228',['toRadians',['../classjava_1_1lang_1_1Math.html#aa64a78f8b9c6551abecdbe78776c032c',1,'java::lang::Math']]], 5 | ['totalmemory_229',['totalMemory',['../classjava_1_1lang_1_1Runtime.html#a5d6ce9d1217670c6af50eb45b044c6a8',1,'java::lang::Runtime']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /www/docs/search/functions_12.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['update_230',['update',['../classfemto_1_1sound_1_1Procedural.html#ae9a66a5b3c8f03b647a8a015635f42b6',1,'femto.sound.Procedural.update()'],['../classfemto_1_1State.html#afae9ef243503157dbea6185f40e5a93e',1,'femto.State.update()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/functions_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['equal_179',['equal',['../classjava_1_1util_1_1Date.html#abe79997dbb1913a9d9ec0a9995a3f7aa',1,'java::util::Date']]], 4 | ['exit_180',['exit',['../classjava_1_1lang_1_1System.html#aa1a50abe8932a0ae1bf2cff29fdbf08d',1,'java::lang::System']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /www/docs/search/functions_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['justpressed_196',['justPressed',['../classfemto_1_1input_1_1Button.html#a7b3af737a8aa34e8ba3c47bb2ca46dc8',1,'femto::input::Button']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/functions_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['next_202',['next',['../classjava_1_1util_1_1Random.html#a57f3e047398e65d249ebdd81c7b8b4ad',1,'java::util::Random']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/functions_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['onirq_203',['onIRQ',['../classfemto_1_1sound_1_1Mixer.html#ab01c8e280472c6ac87a543f67c022ad8',1,'femto::sound::Mixer']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/search/mag_sel.png -------------------------------------------------------------------------------- /www/docs/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['examples_252',['Examples',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/pages_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['pokitto_20intervalometer_253',['Pokitto intervalometer',['../intervalometer.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/pages_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['sine_20and_20cosine_20graphical_20representation_254',['Sine and cosine graphical representation',['../sincosgraphical.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/search/search_l.png -------------------------------------------------------------------------------- /www/docs/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/search/search_m.png -------------------------------------------------------------------------------- /www/docs/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/search/search_r.png -------------------------------------------------------------------------------- /www/docs/search/variables_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['a_232',['A',['../classfemto_1_1input_1_1Button.html#ae26b077e71462078f0ca1cb79443b0ab',1,'femto::input::Button']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/variables_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['b_233',['B',['../classfemto_1_1input_1_1Button.html#a1fb99692003e725c8ded26037a751ccc',1,'femto::input::Button']]], 4 | ['buffer_234',['buffer',['../classfemto_1_1mode_1_1HiRes16Color.html#a4b8dc57c804a596d78e3f9c9681ec179',1,'femto.mode.HiRes16Color.buffer()'],['../classfemto_1_1mode_1_1LowRes256Color.html#a3560bb8256c975c81e1549fe49403ba0',1,'femto.mode.LowRes256Color.buffer()']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /www/docs/search/variables_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['c_235',['C',['../classfemto_1_1input_1_1Button.html#af431679840aafe9d29e8909668c2e75f',1,'femto::input::Button']]], 4 | ['channel_236',['channel',['../classfemto_1_1sound_1_1Procedural.html#ac6fb4de42b27da65b716a1864a309898',1,'femto::sound::Procedural']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /www/docs/search/variables_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['down_237',['Down',['../classfemto_1_1input_1_1Button.html#af07a02d3d9d86a50ff7c4fedc51bc89a',1,'femto::input::Button']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/variables_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['e_238',['E',['../classjava_1_1lang_1_1Math.html#a85ac7c34ba1a1e0be5ff1f18320b7729',1,'java::lang::Math']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/variables_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['flash_239',['Flash',['../classfemto_1_1input_1_1Button.html#aeed0f29abe8a8235be9dbf3c40309b03',1,'femto::input::Button']]], 4 | ['font_240',['font',['../classfemto_1_1mode_1_1ScreenMode.html#abe478e07ed7f03fe634293bd65ed785a',1,'femto::mode::ScreenMode']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /www/docs/search/variables_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['left_241',['Left',['../classfemto_1_1input_1_1Button.html#abc0b4ccd29f9c81152e654fb0454554b',1,'femto::input::Button']]], 4 | ['loop_242',['loop',['../classfemto_1_1sound_1_1Stream.html#aaf39b2ac538979035755f9a2a0178266',1,'femto::sound::Stream']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /www/docs/search/variables_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['max_5fvalue_243',['MAX_VALUE',['../classjava_1_1lang_1_1Integer.html#a60fe20172359fa57d403bb5011d9acca',1,'java::lang::Integer']]], 4 | ['min_5fvalue_244',['MIN_VALUE',['../classjava_1_1lang_1_1Integer.html#a38a4ab16355081f8867458f94c095b9c',1,'java::lang::Integer']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /www/docs/search/variables_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['reset_247',['Reset',['../classfemto_1_1input_1_1Button.html#a3eaff06da81bb03344c41ad135996462',1,'femto::input::Button']]], 4 | ['right_248',['Right',['../classfemto_1_1input_1_1Button.html#ad7ffc20f83f20a70dfb3d81c3b02ed9c',1,'femto::input::Button']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /www/docs/search/variables_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['size_249',['SIZE',['../classjava_1_1lang_1_1Integer.html#a1429901519f608fbb162883074d6cc1f',1,'java::lang::Integer']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/variables_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['t_250',['t',['../classfemto_1_1sound_1_1Procedural.html#a623d939a8e1486531f6bfa6c9ed1e10d',1,'femto::sound::Procedural']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/search/variables_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['up_251',['Up',['../classfemto_1_1input_1_1Button.html#a5e1ecd39f82979f68e205422072c3664',1,'femto::input::Button']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /www/docs/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/splitbar.png -------------------------------------------------------------------------------- /www/docs/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/sync_off.png -------------------------------------------------------------------------------- /www/docs/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/sync_on.png -------------------------------------------------------------------------------- /www/docs/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/tab_a.png -------------------------------------------------------------------------------- /www/docs/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/tab_b.png -------------------------------------------------------------------------------- /www/docs/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/tab_h.png -------------------------------------------------------------------------------- /www/docs/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/docs/tab_s.png -------------------------------------------------------------------------------- /www/images/SineAndCosineGraphicalRepresentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/images/SineAndCosineGraphicalRepresentation.png -------------------------------------------------------------------------------- /www/images/femto-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/images/femto-icon.png -------------------------------------------------------------------------------- /www/images/femto-icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/images/femto-icon2.png -------------------------------------------------------------------------------- /www/images/icons/3d.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/angular-component.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/angular-directive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/angular-guard.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/angular-pipe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/angular-resolver.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/angular-service.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/angular.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/audio.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /www/images/icons/azure.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/certificate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/changelog.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/codeowners.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/coffee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/conduct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /www/images/icons/console.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/contributing.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /www/images/icons/credits.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/css-map.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/css.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/database.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/diff.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/disc.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/document.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/elixir.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/email.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/exe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/favicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/folder-delta-open.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /www/images/icons/folder-delta.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/folder-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/images/icons/folder-root-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/images/icons/folder-root.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/images/icons/folder-serverless-open.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/folder-serverless.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/images/icons/font.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/html.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/java.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/julia.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /www/images/icons/key.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/lib.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/markdown.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/mdx.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/merlin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /www/images/icons/mxml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/nim.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/npm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | n 7 | 8 | 9 | -------------------------------------------------------------------------------- /www/images/icons/nunjucks.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /www/images/icons/powerpoint.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/readme.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/routing.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/ruby.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/scheme.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/shaderlab.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/solidity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /www/images/icons/table.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/todo.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/url.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /www/images/icons/vim.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/images/icons/virtual.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/visualstudio.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /www/images/icons/vue.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/wallaby.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/images/icons/word.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/xaml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/images/icons/xml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /www/images/icons/zip.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/piskel/css/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/css/fonts/icomoon.eot -------------------------------------------------------------------------------- /www/piskel/css/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/css/fonts/icomoon.ttf -------------------------------------------------------------------------------- /www/piskel/css/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/css/fonts/icomoon.woff -------------------------------------------------------------------------------- /www/piskel/css/fonts/piskel.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/css/fonts/piskel.eot -------------------------------------------------------------------------------- /www/piskel/css/fonts/piskel.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/css/fonts/piskel.ttf -------------------------------------------------------------------------------- /www/piskel/css/fonts/piskel.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/css/fonts/piskel.woff -------------------------------------------------------------------------------- /www/piskel/img/canvas-backgrounds/canvas-background-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/canvas-backgrounds/canvas-background-light.png -------------------------------------------------------------------------------- /www/piskel/img/canvas-backgrounds/canvas-background-lowcontrast-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/canvas-backgrounds/canvas-background-lowcontrast-dark.png -------------------------------------------------------------------------------- /www/piskel/img/canvas-backgrounds/canvas-background-lowcontrast-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/canvas-backgrounds/canvas-background-lowcontrast-medium.png -------------------------------------------------------------------------------- /www/piskel/img/canvas-backgrounds/canvas-background-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/canvas-backgrounds/canvas-background-medium.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/circle.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/color-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/color-palette.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/dither.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/dither.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/dropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/dropper.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/eraser.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/hand.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/lighten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/lighten.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/mirror-pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/mirror-pen.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/paint-bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/paint-bucket.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/pen.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/rectangle.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/select.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/stroke.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/vertical-mirror-pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/vertical-mirror-pen.png -------------------------------------------------------------------------------- /www/piskel/img/cursors/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/cursors/wand.png -------------------------------------------------------------------------------- /www/piskel/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/favicon.png -------------------------------------------------------------------------------- /www/piskel/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons.png -------------------------------------------------------------------------------- /www/piskel/img/icons/common/common-backup-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/common/common-backup-white.png -------------------------------------------------------------------------------- /www/piskel/img/icons/common/common-backup-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/common/common-backup-white@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/common/common-keyboard-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/common/common-keyboard-gold.png -------------------------------------------------------------------------------- /www/piskel/img/icons/common/common-keyboard-gold@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/common/common-keyboard-gold@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/common/common-swapcolors-arrow-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/common/common-swapcolors-arrow-grey.png -------------------------------------------------------------------------------- /www/piskel/img/icons/common/common-swapcolors-arrow-grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/common/common-swapcolors-arrow-grey@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/common/common-warning-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/common/common-warning-red.png -------------------------------------------------------------------------------- /www/piskel/img/icons/common/common-warning-red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/common/common-warning-red@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/frame/frame-dragndrop-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/frame/frame-dragndrop-white.png -------------------------------------------------------------------------------- /www/piskel/img/icons/frame/frame-dragndrop-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/frame/frame-dragndrop-white@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/frame/frame-duplicate-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/frame/frame-duplicate-white.png -------------------------------------------------------------------------------- /www/piskel/img/icons/frame/frame-duplicate-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/frame/frame-duplicate-white@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/frame/frame-plus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/frame/frame-plus-white.png -------------------------------------------------------------------------------- /www/piskel/img/icons/frame/frame-plus-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/frame/frame-plus-white@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/frame/frame-recyclebin-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/frame/frame-recyclebin-white.png -------------------------------------------------------------------------------- /www/piskel/img/icons/frame/frame-recyclebin-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/frame/frame-recyclebin-white@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/minimap/minimap-grid-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/minimap/minimap-grid-gold.png -------------------------------------------------------------------------------- /www/piskel/img/icons/minimap/minimap-grid-gold@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/minimap/minimap-grid-gold@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/minimap/minimap-grid-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/minimap/minimap-grid-white.png -------------------------------------------------------------------------------- /www/piskel/img/icons/minimap/minimap-grid-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/minimap/minimap-grid-white@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/minimap/minimap-popup-preview-arrow-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/minimap/minimap-popup-preview-arrow-gold.png -------------------------------------------------------------------------------- /www/piskel/img/icons/minimap/minimap-popup-preview-arrow-gold@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/minimap/minimap-popup-preview-arrow-gold@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/minimap/minimap-popup-preview-arrow-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/minimap/minimap-popup-preview-arrow-white.png -------------------------------------------------------------------------------- /www/piskel/img/icons/minimap/minimap-popup-preview-arrow-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/minimap/minimap-popup-preview-arrow-white@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/settings/settings-export-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/settings/settings-export-white.png -------------------------------------------------------------------------------- /www/piskel/img/icons/settings/settings-export-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/settings/settings-export-white@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/settings/settings-gear-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/settings/settings-gear-white.png -------------------------------------------------------------------------------- /www/piskel/img/icons/settings/settings-gear-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/settings/settings-gear-white@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/settings/settings-open-folder-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/settings/settings-open-folder-white.png -------------------------------------------------------------------------------- /www/piskel/img/icons/settings/settings-open-folder-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/settings/settings-open-folder-white@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/settings/settings-resize-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/settings/settings-resize-white.png -------------------------------------------------------------------------------- /www/piskel/img/icons/settings/settings-resize-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/settings/settings-resize-white@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/settings/settings-save-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/settings/settings-save-white.png -------------------------------------------------------------------------------- /www/piskel/img/icons/settings/settings-save-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/settings/settings-save-white@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-circle.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-circle@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-colorpicker.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-colorpicker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-colorpicker@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-colorswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-colorswap.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-colorswap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-colorswap@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-dithering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-dithering.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-dithering@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-dithering@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-eraser.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-eraser@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-eraser@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-lasso-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-lasso-select.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-lasso-select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-lasso-select@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-lighten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-lighten.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-lighten@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-lighten@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-move.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-move@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-move@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-paint-bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-paint-bucket.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-paint-bucket@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-paint-bucket@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-pen.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-pen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-pen@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-rectangle-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-rectangle-select.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-rectangle-select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-rectangle-select@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-rectangle.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-rectangle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-rectangle@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-shape-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-shape-select.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-shape-select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-shape-select@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-stroke.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-stroke@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-stroke@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-vertical-mirror-pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-vertical-mirror-pen.png -------------------------------------------------------------------------------- /www/piskel/img/icons/tools/tool-vertical-mirror-pen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/tools/tool-vertical-mirror-pen@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/transform/tool-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/transform/tool-center.png -------------------------------------------------------------------------------- /www/piskel/img/icons/transform/tool-center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/transform/tool-center@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/transform/tool-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/transform/tool-clone.png -------------------------------------------------------------------------------- /www/piskel/img/icons/transform/tool-clone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/transform/tool-clone@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/transform/tool-crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/transform/tool-crop.png -------------------------------------------------------------------------------- /www/piskel/img/icons/transform/tool-crop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/transform/tool-crop@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/transform/tool-flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/transform/tool-flip.png -------------------------------------------------------------------------------- /www/piskel/img/icons/transform/tool-flip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/transform/tool-flip@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons/transform/tool-rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/transform/tool-rotate.png -------------------------------------------------------------------------------- /www/piskel/img/icons/transform/tool-rotate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons/transform/tool-rotate@2x.png -------------------------------------------------------------------------------- /www/piskel/img/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/icons@2x.png -------------------------------------------------------------------------------- /www/piskel/img/unused/circle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/unused/circle-dark.png -------------------------------------------------------------------------------- /www/piskel/img/unused/eraser-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/unused/eraser-dark.png -------------------------------------------------------------------------------- /www/piskel/img/unused/eyedropper-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/unused/eyedropper-dark.png -------------------------------------------------------------------------------- /www/piskel/img/unused/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/unused/gallery.png -------------------------------------------------------------------------------- /www/piskel/img/unused/hand-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/unused/hand-dark.png -------------------------------------------------------------------------------- /www/piskel/img/unused/lasso-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/unused/lasso-dark.png -------------------------------------------------------------------------------- /www/piskel/img/unused/magicwand-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/unused/magicwand-dark.png -------------------------------------------------------------------------------- /www/piskel/img/unused/paintbucket-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/unused/paintbucket-dark.png -------------------------------------------------------------------------------- /www/piskel/img/unused/pen-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/unused/pen-dark.png -------------------------------------------------------------------------------- /www/piskel/img/unused/rectangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/unused/rectangle-dark.png -------------------------------------------------------------------------------- /www/piskel/img/unused/rectangle_selection-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/img/unused/rectangle_selection-dark.png -------------------------------------------------------------------------------- /www/piskel/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/piskel/logo.png -------------------------------------------------------------------------------- /www/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/splash.jpg -------------------------------------------------------------------------------- /www/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/splash.png -------------------------------------------------------------------------------- /www/splash.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/splash.webm -------------------------------------------------------------------------------- /www/splash0.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/splash0.webm -------------------------------------------------------------------------------- /www/splash1.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/splash1.webm -------------------------------------------------------------------------------- /www/splash2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/splash2.png -------------------------------------------------------------------------------- /www/splash2.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/splash2.webm -------------------------------------------------------------------------------- /www/splash3.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/splash3.webm -------------------------------------------------------------------------------- /www/w8gdH283Tvk__Lua32TysjIfp8uP.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/w8gdH283Tvk__Lua32TysjIfp8uP.woff2 -------------------------------------------------------------------------------- /www/w8gdH283Tvk__Lua32TysjIfqcuPP9g.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemanga/FemtoIDE/111c2e71b5e72507cdd0c29712587706f14776ba/www/w8gdH283Tvk__Lua32TysjIfqcuPP9g.woff2 --------------------------------------------------------------------------------