├── .gitignore ├── .java-version ├── .vscode └── settings.json ├── Docs └── Tutorials │ ├── BigBlue │ ├── TaleOfBigBlue.md │ ├── blueInEditor.png │ ├── blueMap.png │ ├── blueOnScreen.png │ ├── blueTile.png │ ├── mipMap.gif │ ├── packing.png │ ├── partScreen.png │ └── wolfdemo.png │ └── PLASMA │ └── User Manual.md ├── Example Content ├── Ancient Legends │ ├── Ancient Legends Manual.txt │ ├── Disk images │ │ ├── Ancient Legends - 800k version.2mg │ │ ├── Ancient Legends - Disk 1.dsk │ │ └── Ancient Legends - Disk 2.dsk │ ├── README.md │ └── world.xml ├── README.md └── image_examples.xml ├── LICENSE ├── OutlawEditor ├── .gitignore ├── .java-version ├── README.md ├── catalog.xml ├── nbactions.xml ├── pom.xml └── src │ └── main │ ├── deploy │ └── package │ │ ├── macosx │ │ └── OutlawEditor.icns │ │ └── windows │ │ └── OutlawEditor.ico │ ├── java │ ├── module-info.java │ └── org │ │ └── badvision │ │ └── outlaweditor │ │ ├── Application.java │ │ ├── Editor.java │ │ ├── FileUtils.java │ │ ├── GlobalEditor.java │ │ ├── ImageClip.java │ │ ├── ImageEditor.java │ │ ├── ImageRenderer.java │ │ ├── MapEditor.java │ │ ├── MythosEditor.java │ │ ├── SheetEditor.java │ │ ├── TileEditor.java │ │ ├── TileRenderer.java │ │ ├── TransferHelper.java │ │ ├── api │ │ ├── ApplicationState.java │ │ ├── MenuAction.java │ │ └── Platform.java │ │ ├── apple │ │ ├── AppleImageEditor.java │ │ ├── AppleImageRenderer.java │ │ ├── AppleNTSCGraphics.java │ │ ├── AppleTileEditor.java │ │ ├── AppleTileRenderer.java │ │ ├── FillPattern.java │ │ ├── ImageDitherEngine.java │ │ ├── Palette.java │ │ └── dhgr │ │ │ ├── AppleDHGRImageEditor.java │ │ │ ├── AppleDHGRImageRenderer.java │ │ │ ├── AppleDHGRTileEditor.java │ │ │ ├── AppleDHGRTileRenderer.java │ │ │ └── FillPattern.java │ │ ├── data │ │ ├── DataObserver.java │ │ ├── DataProducer.java │ │ ├── DataUtilities.java │ │ ├── PropertyHelper.java │ │ ├── TileInstance.java │ │ ├── TileMap.java │ │ ├── TileUtils.java │ │ └── TilesetUtils.java │ │ ├── spelling │ │ ├── SpellChecker.java │ │ ├── SpellResponse.java │ │ └── Suggestion.java │ │ └── ui │ │ ├── ApplicationMenuController.java │ │ ├── ApplicationUIController.java │ │ ├── EntitySelectorCell.java │ │ ├── GlobalEditorTabController.java │ │ ├── ImageConversionPostAction.java │ │ ├── ImageEditorTabController.java │ │ ├── MapEditorTabController.java │ │ ├── ModalEditor.java │ │ ├── MythosScriptEditorController.java │ │ ├── PatternSelectModal.java │ │ ├── SheetEditorController.java │ │ ├── TileEditorTabController.java │ │ ├── TileSelectModal.java │ │ ├── ToolType.java │ │ ├── UIAction.java │ │ └── impl │ │ ├── ApplicationMenuControllerImpl.java │ │ ├── ApplicationUIControllerImpl.java │ │ ├── GlobalEditorTabControllerImpl.java │ │ ├── ImageConversionWizardController.java │ │ ├── ImageEditorTabControllerImpl.java │ │ ├── MapEditorTabControllerImpl.java │ │ ├── SheetEditorControllerImpl.java │ │ └── TileEditorTabControllerImpl.java │ └── resources │ ├── ApplicationUI.fxml │ ├── META-INF │ └── native-image │ │ ├── filter-file.json │ │ ├── jni-config.json │ │ ├── predefined-classes-config.json │ │ ├── proxy-config.json │ │ ├── reflect-config.json │ │ ├── resource-config.json │ │ └── serialization-config.json │ ├── Menubar.fxml │ ├── MythosScriptEditor.fxml │ ├── SheetEditor.fxml │ ├── globalEditorTab.fxml │ ├── imageConversionWizard.fxml │ ├── imageEditorTab.fxml │ ├── images │ ├── about.xcf │ ├── arrowUp.png │ ├── background.jpg │ ├── draw-rectangle.png │ ├── eraser-icon.png │ ├── eraser.png │ ├── fill.png │ ├── icon_brokenLink.png │ ├── not_visible.png │ ├── pencil_big.png │ ├── pencil_med.png │ ├── pencil_small.png │ ├── revolver_icon.png │ ├── visible.png │ ├── zoomIn.png │ └── zoomOut.png │ ├── jaxb │ └── OutlawSchema │ │ └── OutlawSchema.xsd │ ├── mapEditorTab.fxml │ ├── mythos │ ├── blockly_compressed.js │ ├── blocks_compressed.js │ ├── dictionary.txt │ ├── media │ │ ├── 1x1.gif │ │ ├── click.mp3 │ │ ├── click.ogg │ │ ├── click.wav │ │ ├── delete.mp3 │ │ ├── delete.ogg │ │ ├── delete.wav │ │ ├── handclosed.cur │ │ ├── handopen.cur │ │ ├── icons.svg │ │ ├── quote0.png │ │ ├── quote1.png │ │ ├── sprites.png │ │ ├── sprites.svg │ │ ├── trashbody.png │ │ ├── trashlid.png │ │ └── tree.png │ ├── msg │ │ ├── js │ │ │ ├── ar.js │ │ │ ├── az-latn.js │ │ │ ├── az.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── en_us.js │ │ │ ├── es.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── he.js │ │ │ ├── hu.js │ │ │ ├── ia.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ko.js │ │ │ ├── lrc.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pms.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sq.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tl.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-hans.js │ │ │ └── zh-hant.js │ │ ├── json │ │ │ ├── ar.json │ │ │ ├── az.json │ │ │ ├── be-tarask.json │ │ │ ├── br.json │ │ │ ├── ca.json │ │ │ ├── cs.json │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── el.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fa.json │ │ │ ├── fi.json │ │ │ ├── fr.json │ │ │ ├── he.json │ │ │ ├── hi.json │ │ │ ├── hu.json │ │ │ ├── ia.json │ │ │ ├── id.json │ │ │ ├── is.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── keys.json │ │ │ ├── ko.json │ │ │ ├── lrc.json │ │ │ ├── ms.json │ │ │ ├── nb.json │ │ │ ├── nl.json │ │ │ ├── pl.json │ │ │ ├── pms.json │ │ │ ├── pt-br.json │ │ │ ├── pt.json │ │ │ ├── qqq.json │ │ │ ├── ro.json │ │ │ ├── ru.json │ │ │ ├── sq.json │ │ │ ├── sr.json │ │ │ ├── sv.json │ │ │ ├── synonyms.json │ │ │ ├── th.json │ │ │ ├── tl.json │ │ │ ├── tr.json │ │ │ ├── uk.json │ │ │ ├── vi.json │ │ │ ├── zh-hans.json │ │ │ └── zh-hant.json │ │ └── messages.js │ └── mythos-editor │ │ ├── html │ │ └── editor.html │ │ └── js │ │ └── mythos_uncompressed.js │ ├── styles │ ├── applicationui.css │ ├── imageconversionwizard.css │ ├── mythosscripteditor.css │ └── styles.css │ ├── testData │ ├── blocklytest1.xml │ └── blocklytest2.xml │ └── tileEditorTab.fxml ├── Platform ├── Apple │ ├── .project │ ├── README.md │ ├── build.xml │ ├── demos │ │ └── imagedemo.dsk │ ├── tools │ │ ├── A2Copy │ │ │ ├── build.xml │ │ │ ├── lib │ │ │ │ ├── VERSIONS │ │ │ │ └── ac.jar │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── a2copy │ │ │ │ └── A2Copy.java │ │ ├── A2PackPlugin │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── badvision │ │ │ │ └── outlaw │ │ │ │ └── plugin │ │ │ │ └── a2pack │ │ │ │ ├── A2PackPlugin.java │ │ │ │ └── Activator.java │ │ ├── ACME │ │ │ ├── ACME_Lib │ │ │ │ ├── 6502 │ │ │ │ │ └── Help.txt │ │ │ │ ├── 65816 │ │ │ │ │ └── Help.txt │ │ │ │ └── Own │ │ │ │ │ └── Help.txt │ │ │ ├── File_ID.Diz │ │ │ ├── ReadMe.txt │ │ │ ├── acme │ │ │ ├── docs │ │ │ │ ├── 65816.txt │ │ │ │ ├── AddrModes.txt │ │ │ │ ├── AllPOs.txt │ │ │ │ ├── COPYING │ │ │ │ ├── Changes.txt │ │ │ │ ├── Errors.txt │ │ │ │ ├── Example.txt │ │ │ │ ├── Help.txt │ │ │ │ ├── Illegals.txt │ │ │ │ ├── Lib.txt │ │ │ │ ├── QuickRef.txt │ │ │ │ ├── Source.txt │ │ │ │ └── Upgrade.txt │ │ │ ├── examples │ │ │ │ ├── ddrv128.exp │ │ │ │ ├── ddrv64.exp │ │ │ │ ├── macedit.exp │ │ │ │ └── me │ │ │ │ │ └── tables.bin │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.dos │ │ │ │ ├── Makefile.riscos │ │ │ │ ├── _amiga.h │ │ │ │ ├── _dos.c │ │ │ │ ├── _dos.h │ │ │ │ ├── _riscos.c │ │ │ │ ├── _riscos.h │ │ │ │ ├── _std.c │ │ │ │ ├── _std.h │ │ │ │ ├── acme │ │ │ │ ├── acme.c │ │ │ │ ├── acme.h │ │ │ │ ├── acme.jar │ │ │ │ ├── alu.c │ │ │ │ ├── alu.h │ │ │ │ ├── cliargs.c │ │ │ │ ├── cliargs.h │ │ │ │ ├── config.h │ │ │ │ ├── cpu.c │ │ │ │ ├── cpu.h │ │ │ │ ├── dynabuf.c │ │ │ │ ├── dynabuf.h │ │ │ │ ├── encoding.c │ │ │ │ ├── encoding.h │ │ │ │ ├── flow.c │ │ │ │ ├── flow.h │ │ │ │ ├── global.c │ │ │ │ ├── global.h │ │ │ │ ├── input.c │ │ │ │ ├── input.h │ │ │ │ ├── label.c │ │ │ │ ├── label.h │ │ │ │ ├── macro.c │ │ │ │ ├── macro.h │ │ │ │ ├── mnemo.c │ │ │ │ ├── mnemo.h │ │ │ │ ├── output.c │ │ │ │ ├── output.h │ │ │ │ ├── platform.c │ │ │ │ ├── platform.h │ │ │ │ ├── section.c │ │ │ │ ├── section.h │ │ │ │ ├── tree.c │ │ │ │ └── tree.h │ │ ├── AppPackaging │ │ │ ├── .gitignore │ │ │ ├── build_all.bat │ │ │ ├── game_icon.icns │ │ │ ├── game_icon.ico │ │ │ ├── packr.jar │ │ │ └── update_builds.sh │ │ ├── ConvertMidi │ │ │ ├── README.md │ │ │ ├── Ultima3.mid │ │ │ └── cvtmid.py │ │ ├── MerlinToText │ │ │ └── merlinToText.rb │ │ ├── PLASMA │ │ │ ├── README.md │ │ │ └── src │ │ │ │ ├── PLVM02#4000 │ │ │ │ ├── cmd.pla │ │ │ │ ├── cmdstub.s │ │ │ │ ├── cmdsys.plh │ │ │ │ ├── codegen.c │ │ │ │ ├── codegen.h │ │ │ │ ├── hello.pla │ │ │ │ ├── lex.c │ │ │ │ ├── lex.h │ │ │ │ ├── makefile │ │ │ │ ├── parse.c │ │ │ │ ├── parse.h │ │ │ │ ├── plasm.c │ │ │ │ ├── plasm.h │ │ │ │ ├── plasm.jar │ │ │ │ ├── plvm.c │ │ │ │ ├── plvm02.s │ │ │ │ ├── plvm02zp.inc │ │ │ │ ├── symbols.h │ │ │ │ ├── test.pla │ │ │ │ ├── testlib.pla │ │ │ │ ├── testlib.plh │ │ │ │ └── tokens.h │ │ ├── PackPartitions │ │ │ ├── .java-version │ │ │ ├── build.xml │ │ │ ├── lib │ │ │ │ ├── groovy-4.0.24.jar │ │ │ │ ├── groovy-ant-4.0.24.jar │ │ │ │ ├── groovy-json-4.0.24.jar │ │ │ │ └── groovy-xml-4.0.24.jar │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── groovy-build.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── badvision │ │ │ │ ├── A2PackPartitions.groovy │ │ │ │ └── Lx47Algorithm.java │ │ ├── ProRWTS │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── PROBOOT#800 │ │ │ ├── PRORWTS2#4000 │ │ │ ├── proboot.s │ │ │ └── prorwts2.s │ │ ├── build.xml │ │ ├── imageConvert.groovy │ │ └── jace │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── azure │ │ │ │ └── azureSettings.xml │ │ │ ├── compiler.xml │ │ │ ├── encodings.xml │ │ │ ├── jarRepositories.xml │ │ │ ├── misc.xml │ │ │ ├── runConfigurations.xml │ │ │ └── vcs.xml │ │ │ ├── .java-version │ │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── settings.json │ │ │ ├── LICENSE │ │ │ ├── README-DEVELOPERS.md │ │ │ ├── README-LAWLESS-SYSTEMS.md │ │ │ ├── README-MACOS_packaging.md │ │ │ ├── README.md │ │ │ ├── build.sh │ │ │ ├── build_darwin.sh │ │ │ ├── manifest.mf │ │ │ ├── misc │ │ │ ├── 65c02_opcode_reference.xlsx │ │ │ ├── 8bitbunch.xml │ │ │ └── color_pattern_bitmask_calculator.xlsx │ │ │ ├── nb-configuration.xml │ │ │ ├── nbactions.xml │ │ │ ├── package-macos.zsh │ │ │ ├── pom.xml │ │ │ ├── readme-macos.txt │ │ │ ├── run.sh │ │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ ├── jace │ │ │ │ │ │ ├── AboutController.java │ │ │ │ │ │ ├── ConvertDiskImage.java │ │ │ │ │ │ ├── Emulator.java │ │ │ │ │ │ ├── EmulatorUILogic.java │ │ │ │ │ │ ├── JaceUIController.java │ │ │ │ │ │ ├── LawlessLegends.java │ │ │ │ │ │ ├── apple2e │ │ │ │ │ │ │ ├── Apple2e.java │ │ │ │ │ │ │ ├── MOS65C02.java │ │ │ │ │ │ │ ├── RAM128k.java │ │ │ │ │ │ │ ├── SoftSwitches.java │ │ │ │ │ │ │ ├── Speaker.java │ │ │ │ │ │ │ ├── VideoDHGR.java │ │ │ │ │ │ │ ├── VideoNTSC.java │ │ │ │ │ │ │ └── softswitch │ │ │ │ │ │ │ │ ├── IntC8SoftSwitch.java │ │ │ │ │ │ │ │ ├── KeyboardSoftSwitch.java │ │ │ │ │ │ │ │ ├── Memory2SoftSwitch.java │ │ │ │ │ │ │ │ ├── MemorySoftSwitch.java │ │ │ │ │ │ │ │ └── VideoSoftSwitch.java │ │ │ │ │ │ ├── applesoft │ │ │ │ │ │ │ ├── ApplesoftHandler.java │ │ │ │ │ │ │ ├── ApplesoftProgram.java │ │ │ │ │ │ │ ├── Command.java │ │ │ │ │ │ │ └── Line.java │ │ │ │ │ │ ├── assembly │ │ │ │ │ │ │ ├── ACME_README.md │ │ │ │ │ │ │ ├── AcmeCompiler.java │ │ │ │ │ │ │ ├── AcmeCrossAssembler.java │ │ │ │ │ │ │ └── AssemblyHandler.java │ │ │ │ │ │ ├── cheat │ │ │ │ │ │ │ ├── Cheats.java │ │ │ │ │ │ │ ├── DynamicCheat.java │ │ │ │ │ │ │ ├── MemoryCell.java │ │ │ │ │ │ │ ├── MetaCheat.java │ │ │ │ │ │ │ ├── MontezumasRevengeCheats.java │ │ │ │ │ │ │ ├── PrinceOfPersiaCheats.java │ │ │ │ │ │ │ └── ProgramIdentity.java │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── AppSettingsDTO.java │ │ │ │ │ │ │ ├── ConfigurableField.java │ │ │ │ │ │ │ ├── Configuration.java │ │ │ │ │ │ │ ├── ConfigurationUIController.java │ │ │ │ │ │ │ ├── DeviceEnum.java │ │ │ │ │ │ │ ├── DeviceSelection.java │ │ │ │ │ │ │ ├── DynamicSelection.java │ │ │ │ │ │ │ ├── ISelection.java │ │ │ │ │ │ │ ├── InvokableAction.java │ │ │ │ │ │ │ ├── InvokableActionAnnotationProcessor.java │ │ │ │ │ │ │ ├── InvokableActionRegistry.java │ │ │ │ │ │ │ ├── InvokableActionRegistryImpl.java │ │ │ │ │ │ │ ├── Name.java │ │ │ │ │ │ │ └── Reconfigurable.java │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── CPU.java │ │ │ │ │ │ │ ├── Card.java │ │ │ │ │ │ │ ├── Computer.java │ │ │ │ │ │ │ ├── Debugger.java │ │ │ │ │ │ │ ├── Device.java │ │ │ │ │ │ │ ├── Font.java │ │ │ │ │ │ │ ├── IndependentTimedDevice.java │ │ │ │ │ │ │ ├── KeyHandler.java │ │ │ │ │ │ │ ├── Keyboard.java │ │ │ │ │ │ │ ├── Motherboard.java │ │ │ │ │ │ │ ├── PagedMemory.java │ │ │ │ │ │ │ ├── Palette.java │ │ │ │ │ │ │ ├── RAM.java │ │ │ │ │ │ │ ├── RAMEvent.java │ │ │ │ │ │ │ ├── RAMListener.java │ │ │ │ │ │ │ ├── SoftSwitch.java │ │ │ │ │ │ │ ├── SoundMixer.java │ │ │ │ │ │ │ ├── TimedDevice.java │ │ │ │ │ │ │ ├── Utility.java │ │ │ │ │ │ │ ├── VersionInfo.java │ │ │ │ │ │ │ ├── Video.java │ │ │ │ │ │ │ └── VideoWriter.java │ │ │ │ │ │ ├── hardware │ │ │ │ │ │ │ ├── CardAppleMouse.java │ │ │ │ │ │ │ ├── CardDiskII.java │ │ │ │ │ │ │ ├── CardExt80Col.java │ │ │ │ │ │ │ ├── CardHayesMicromodem.java │ │ │ │ │ │ │ ├── CardMockingboard.java │ │ │ │ │ │ │ ├── CardRamFactor.java │ │ │ │ │ │ │ ├── CardRamworks.java │ │ │ │ │ │ │ ├── CardSSC.java │ │ │ │ │ │ │ ├── CardThunderclock.java │ │ │ │ │ │ │ ├── Cards.java │ │ │ │ │ │ │ ├── DiskIIDrive.java │ │ │ │ │ │ │ ├── FloppyDisk.java │ │ │ │ │ │ │ ├── Joystick.java │ │ │ │ │ │ │ ├── NoSlotClock.java │ │ │ │ │ │ │ ├── PassportMidiInterface.java │ │ │ │ │ │ │ ├── ProdosDriver.java │ │ │ │ │ │ │ ├── SmartportDriver.java │ │ │ │ │ │ │ ├── VideoImpls.java │ │ │ │ │ │ │ ├── ZipWarpAccelerator.java │ │ │ │ │ │ │ ├── massStorage │ │ │ │ │ │ │ │ ├── CardMassStorage.java │ │ │ │ │ │ │ │ ├── DirectoryNode.java │ │ │ │ │ │ │ │ ├── DiskNode.java │ │ │ │ │ │ │ │ ├── FileNode.java │ │ │ │ │ │ │ │ ├── FreespaceBitmap.java │ │ │ │ │ │ │ │ ├── IDisk.java │ │ │ │ │ │ │ │ ├── LargeDisk.java │ │ │ │ │ │ │ │ ├── MassStorageDrive.java │ │ │ │ │ │ │ │ ├── ProdosVirtualDisk.java │ │ │ │ │ │ │ │ └── SubNode.java │ │ │ │ │ │ │ └── mockingboard │ │ │ │ │ │ │ │ ├── EnvelopeGenerator.java │ │ │ │ │ │ │ │ ├── NoiseGenerator.java │ │ │ │ │ │ │ │ ├── PSG.java │ │ │ │ │ │ │ │ ├── R6522.java │ │ │ │ │ │ │ │ ├── SoundGenerator.java │ │ │ │ │ │ │ │ └── TimedGenerator.java │ │ │ │ │ │ ├── ide │ │ │ │ │ │ │ ├── CompileResult.java │ │ │ │ │ │ │ ├── HeadlessProgram.java │ │ │ │ │ │ │ ├── IdeController.java │ │ │ │ │ │ │ ├── LanguageHandler.java │ │ │ │ │ │ │ ├── Program.java │ │ │ │ │ │ │ └── TextHandler.java │ │ │ │ │ │ ├── lawless │ │ │ │ │ │ │ ├── FPSMonitorDevice.java │ │ │ │ │ │ │ ├── LawlessComputer.java │ │ │ │ │ │ │ ├── LawlessHacks.java │ │ │ │ │ │ │ ├── LawlessImageTool.java │ │ │ │ │ │ │ ├── LawlessVideo.java │ │ │ │ │ │ │ ├── Media.java │ │ │ │ │ │ │ └── MediaPlayer.java │ │ │ │ │ │ ├── library │ │ │ │ │ │ │ ├── DiskType.java │ │ │ │ │ │ │ ├── MediaCache.java │ │ │ │ │ │ │ ├── MediaConsumer.java │ │ │ │ │ │ │ ├── MediaConsumerParent.java │ │ │ │ │ │ │ ├── MediaEntry.java │ │ │ │ │ │ │ └── TocTreeModel.java │ │ │ │ │ │ ├── state │ │ │ │ │ │ │ ├── ObjectGraphNode.java │ │ │ │ │ │ │ ├── State.java │ │ │ │ │ │ │ ├── StateManager.java │ │ │ │ │ │ │ ├── StateValue.java │ │ │ │ │ │ │ └── Stateful.java │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── Library.java │ │ │ │ │ │ │ ├── MetacheatUI.java │ │ │ │ │ │ │ └── Watch.java │ │ │ │ │ └── module-info.java │ │ │ │ └── resources │ │ │ │ │ ├── META-INF │ │ │ │ │ └── native-image │ │ │ │ │ │ ├── filter-file.json │ │ │ │ │ │ ├── jni-config.json │ │ │ │ │ │ ├── predefined-classes-config.json │ │ │ │ │ │ ├── proxy-config.json │ │ │ │ │ │ ├── reflect-config.json │ │ │ │ │ │ ├── resource-config.json │ │ │ │ │ │ └── serialization-config.json │ │ │ │ │ ├── codemirror │ │ │ │ │ ├── addon │ │ │ │ │ │ ├── comment │ │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ │ └── continuecomment.js │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ └── dialog.js │ │ │ │ │ │ ├── display │ │ │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ │ │ ├── panel.js │ │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ │ └── rulers.js │ │ │ │ │ │ ├── edit │ │ │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ │ ├── continuelist.js │ │ │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ │ │ ├── matchtags.js │ │ │ │ │ │ │ └── trailingspace.js │ │ │ │ │ │ ├── fold │ │ │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ │ │ └── xml-fold.js │ │ │ │ │ │ ├── hint │ │ │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ │ │ ├── css-hint.js │ │ │ │ │ │ │ ├── html-hint.js │ │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ │ ├── show-hint.js │ │ │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ │ │ └── xml-hint.js │ │ │ │ │ │ ├── lint │ │ │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ │ │ ├── css-lint.js │ │ │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ │ │ ├── json-lint.js │ │ │ │ │ │ │ ├── lint.css │ │ │ │ │ │ │ ├── lint.js │ │ │ │ │ │ │ └── yaml-lint.js │ │ │ │ │ │ ├── merge │ │ │ │ │ │ │ ├── merge.css │ │ │ │ │ │ │ └── merge.js │ │ │ │ │ │ ├── mode │ │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ │ └── simple.js │ │ │ │ │ │ ├── runmode │ │ │ │ │ │ │ ├── colorize.js │ │ │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ │ └── runmode.node.js │ │ │ │ │ │ ├── scroll │ │ │ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ │ │ │ ├── scrollpastend.js │ │ │ │ │ │ │ ├── simplescrollbars.css │ │ │ │ │ │ │ └── simplescrollbars.js │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ │ └── searchcursor.js │ │ │ │ │ │ ├── selection │ │ │ │ │ │ │ ├── active-line.js │ │ │ │ │ │ │ ├── mark-selection.js │ │ │ │ │ │ │ └── selection-pointer.js │ │ │ │ │ │ ├── tern │ │ │ │ │ │ │ ├── tern.css │ │ │ │ │ │ │ ├── tern.js │ │ │ │ │ │ │ └── worker.js │ │ │ │ │ │ └── wrap │ │ │ │ │ │ │ └── hardwrap.js │ │ │ │ │ ├── editor.html │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ │ └── codemirror.js │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── cobol │ │ │ │ │ │ │ ├── cobol.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── commonlisp │ │ │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── diff │ │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── forth │ │ │ │ │ │ │ ├── forth.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── fortran │ │ │ │ │ │ │ ├── fortran.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── meta.js │ │ │ │ │ │ ├── pascal │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── pascal.js │ │ │ │ │ │ ├── smalltalk │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── smalltalk.js │ │ │ │ │ │ ├── turtle │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── turtle.js │ │ │ │ │ │ └── z80 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── z80.js │ │ │ │ │ ├── pokes-peeks-calls.html │ │ │ │ │ ├── theme │ │ │ │ │ │ ├── 3024-day.css │ │ │ │ │ │ ├── 3024-night.css │ │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ │ ├── ambiance.css │ │ │ │ │ │ ├── base16-dark.css │ │ │ │ │ │ ├── base16-light.css │ │ │ │ │ │ ├── blackboard.css │ │ │ │ │ │ ├── cobalt.css │ │ │ │ │ │ ├── colorforth.css │ │ │ │ │ │ ├── dracula.css │ │ │ │ │ │ ├── eclipse.css │ │ │ │ │ │ ├── elegant.css │ │ │ │ │ │ ├── erlang-dark.css │ │ │ │ │ │ ├── lesser-dark.css │ │ │ │ │ │ ├── liquibyte.css │ │ │ │ │ │ ├── material.css │ │ │ │ │ │ ├── mbo.css │ │ │ │ │ │ ├── mdn-like.css │ │ │ │ │ │ ├── midnight.css │ │ │ │ │ │ ├── monokai.css │ │ │ │ │ │ ├── neat.css │ │ │ │ │ │ ├── neo.css │ │ │ │ │ │ ├── night.css │ │ │ │ │ │ ├── paraiso-dark.css │ │ │ │ │ │ ├── paraiso-light.css │ │ │ │ │ │ ├── pastel-on-dark.css │ │ │ │ │ │ ├── rubyblue.css │ │ │ │ │ │ ├── seti.css │ │ │ │ │ │ ├── solarized.css │ │ │ │ │ │ ├── the-matrix.css │ │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ │ ├── ttcn.css │ │ │ │ │ │ ├── twilight.css │ │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ │ ├── xq-light.css │ │ │ │ │ │ ├── yeti.css │ │ │ │ │ │ └── zenburn.css │ │ │ │ │ └── zero-page.html │ │ │ │ │ ├── fxml │ │ │ │ │ ├── About.fxml │ │ │ │ │ ├── Configuration.fxml │ │ │ │ │ ├── JaceUI.fxml │ │ │ │ │ ├── Metacheat.fxml │ │ │ │ │ └── editor.fxml │ │ │ │ │ ├── jace │ │ │ │ │ ├── cheats │ │ │ │ │ │ └── program-identities.txt │ │ │ │ │ └── data │ │ │ │ │ │ ├── 35_floppy.png │ │ │ │ │ │ ├── 525_floppy.png │ │ │ │ │ │ ├── 6502_functional_test.bin │ │ │ │ │ │ ├── DiskII.rom │ │ │ │ │ │ ├── RAMFactor14.rom │ │ │ │ │ │ ├── SSC.rom │ │ │ │ │ │ ├── apple2e.rom │ │ │ │ │ │ ├── apple2e_debug.rom │ │ │ │ │ │ ├── apple2plus.rom │ │ │ │ │ │ ├── ayenvelope0.png │ │ │ │ │ │ ├── ayenvelope10.png │ │ │ │ │ │ ├── ayenvelope11.png │ │ │ │ │ │ ├── ayenvelope13.png │ │ │ │ │ │ ├── ayenvelope14.png │ │ │ │ │ │ ├── ayenvelope4.png │ │ │ │ │ │ ├── ayenvelope8.png │ │ │ │ │ │ ├── bootscreen.bin │ │ │ │ │ │ ├── clock.png │ │ │ │ │ │ ├── clock_fix.png │ │ │ │ │ │ ├── disk_ii.png │ │ │ │ │ │ ├── drive-harddisk.png │ │ │ │ │ │ ├── envelopes.xcf │ │ │ │ │ │ ├── font.gif │ │ │ │ │ │ ├── font.png │ │ │ │ │ │ ├── game_icon.png │ │ │ │ │ │ ├── gamecontrollerdb.txt │ │ │ │ │ │ ├── harddrive.png │ │ │ │ │ │ ├── icon.icns │ │ │ │ │ │ ├── icon_exclaim.gif │ │ │ │ │ │ ├── icon_keyboard.gif │ │ │ │ │ │ ├── input-mouse.png │ │ │ │ │ │ ├── network-wired.png │ │ │ │ │ │ ├── ram.png │ │ │ │ │ │ ├── revolver_icon.png │ │ │ │ │ │ ├── rom_image.png │ │ │ │ │ │ ├── sound │ │ │ │ │ │ └── scores.txt │ │ │ │ │ │ └── thunderclock_plus.rom │ │ │ │ │ ├── samplePrograms │ │ │ │ │ └── joystick_test.bas │ │ │ │ │ └── styles │ │ │ │ │ ├── configuration.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── icons │ │ │ │ │ ├── aspect.png │ │ │ │ │ ├── brun.png │ │ │ │ │ ├── config.png │ │ │ │ │ ├── fast.png │ │ │ │ │ ├── fullscreen.png │ │ │ │ │ ├── ide.png │ │ │ │ │ ├── info.png │ │ │ │ │ ├── inspect.png │ │ │ │ │ ├── paste.png │ │ │ │ │ ├── play.png │ │ │ │ │ ├── plugin.png │ │ │ │ │ ├── reboot.png │ │ │ │ │ ├── rewind.png │ │ │ │ │ ├── screenshot.png │ │ │ │ │ ├── slow.png │ │ │ │ │ └── sound.png │ │ │ │ │ └── style.css │ │ │ ├── test │ │ │ │ ├── java │ │ │ │ │ └── jace │ │ │ │ │ │ ├── AbstractFXTest.java │ │ │ │ │ │ ├── ProgramException.java │ │ │ │ │ │ ├── TestProgram.java │ │ │ │ │ │ ├── TestUtils.java │ │ │ │ │ │ ├── apple2e │ │ │ │ │ │ ├── CycleCountTest.java │ │ │ │ │ │ ├── Full65C02Test.java │ │ │ │ │ │ ├── VideoDHGRTest.java │ │ │ │ │ │ └── VideoNTSCTest.java │ │ │ │ │ │ ├── applesoft │ │ │ │ │ │ └── ApplesoftTest.java │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ConfigurationPersistenceTest.java │ │ │ │ │ │ └── DumpConfigTest.java │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── MemoryTest.java │ │ │ │ │ │ ├── SoundTest.java │ │ │ │ │ │ └── UtilityTest.java │ │ │ │ │ │ ├── hardware │ │ │ │ │ │ ├── CardAppleMouseTest.java │ │ │ │ │ │ ├── CardSSCTest.java │ │ │ │ │ │ ├── FloppyDiskTest.java │ │ │ │ │ │ ├── PassportMidiInterfaceTest.java │ │ │ │ │ │ └── mockingboard │ │ │ │ │ │ │ ├── PSGTest.java │ │ │ │ │ │ │ └── R6522Test.java │ │ │ │ │ │ └── ide │ │ │ │ │ │ └── ApplesoftTest.java │ │ │ │ └── resources │ │ │ │ │ └── jace │ │ │ │ │ ├── bcd_test.asm │ │ │ │ │ └── lemonade_stand.bin │ │ │ └── windows │ │ │ │ └── assets │ │ │ │ └── icon.ico │ │ │ └── version.properties │ └── virtual │ │ ├── .gitignore │ │ ├── .project │ │ ├── b │ │ ├── bm │ │ ├── bmg │ │ ├── build.xml │ │ ├── bundlePacker.sh │ │ ├── c │ │ ├── data │ │ ├── .gitignore │ │ ├── disks │ │ │ ├── base_140k.dsk.gz │ │ │ ├── base_5m.2mg.gz │ │ │ ├── boot_patch_readme.txt │ │ │ ├── readme.txt │ │ │ └── util.2mg.gz │ │ ├── fonts │ │ │ └── readme.txt │ │ └── world │ │ │ └── readme.txt │ │ ├── j │ │ ├── launch4j.cfg.xml │ │ ├── nm │ │ ├── nmg │ │ ├── src │ │ ├── core │ │ │ ├── build.xml │ │ │ ├── decomp.s │ │ │ ├── loader.s │ │ │ └── mem.s │ │ ├── font │ │ │ ├── build.xml │ │ │ ├── font.s │ │ │ ├── fontEngine.s │ │ │ ├── hgrchr25.txt │ │ │ └── hgrtbl.txt │ │ ├── include │ │ │ ├── fontEngine.i │ │ │ ├── global.i │ │ │ ├── hiBitAscii.ct │ │ │ ├── marks.i │ │ │ ├── mem.i │ │ │ ├── plasma.i │ │ │ ├── prorwts.i │ │ │ ├── sample.build.props │ │ │ └── sound.i │ │ ├── marks │ │ │ └── marks.s │ │ ├── mockbrd │ │ │ └── main.s │ │ ├── plasma │ │ │ ├── automap.pla │ │ │ ├── automap.plh │ │ │ ├── build.xml │ │ │ ├── combat.pla │ │ │ ├── combat.plh │ │ │ ├── diskops.pla │ │ │ ├── diskops.plh │ │ │ ├── gamelib.plh │ │ │ ├── gameloop.pla │ │ │ ├── globalDefs.plh │ │ │ ├── godmode.pla │ │ │ ├── godmode.plh │ │ │ ├── import.pla │ │ │ ├── import.plh │ │ │ ├── intimate.pla │ │ │ ├── intimate.plh │ │ │ ├── itemutil.pla │ │ │ ├── itemutil.plh │ │ │ ├── party.pla │ │ │ ├── party.plh │ │ │ ├── playtype.pla │ │ │ ├── playtype.plh │ │ │ ├── questlog.pla │ │ │ ├── questlog.plh │ │ │ ├── sndseq.pla │ │ │ ├── sndseq.plh │ │ │ ├── store.pla │ │ │ ├── store.plh │ │ │ ├── story.pla │ │ │ ├── story.plh │ │ │ ├── util3d.pla │ │ │ └── util3d.plh │ │ ├── raycast │ │ │ ├── build.xml │ │ │ ├── expand.s │ │ │ ├── expand_hdr.i │ │ │ ├── expand_split.i │ │ │ ├── genExpand.py │ │ │ ├── javascript │ │ │ │ ├── intcast.htm │ │ │ │ ├── intcast.js │ │ │ │ ├── sprites │ │ │ │ │ ├── armor.png │ │ │ │ │ ├── lamp.png │ │ │ │ │ ├── plantgreen.png │ │ │ │ │ └── tablechairs.png │ │ │ │ └── walls │ │ │ │ │ ├── walls.png │ │ │ │ │ ├── walls_1.png │ │ │ │ │ ├── walls_2.png │ │ │ │ │ ├── walls_3.png │ │ │ │ │ └── walls_4.png │ │ │ ├── render.i │ │ │ └── render.s │ │ ├── sound │ │ │ └── sound.s │ │ └── tile │ │ │ ├── build.xml │ │ │ └── tileEngine.s │ │ └── tools │ │ ├── extractText.sh │ │ ├── getBlockTypes.xslt │ │ ├── jacetest.sh │ │ ├── prng.rb │ │ ├── processText.py │ │ ├── replaceGetKey.xslt │ │ └── xformScript.rb └── C64 │ ├── README.txt │ ├── data │ ├── fonts.GEP │ ├── sprites.spd │ └── tiles.GEP │ ├── demos │ ├── 2d-demo-2015-05-21.prg │ ├── 2d-demo-2015-05-23.prg │ └── 2d-demo-2016-01-14.prg │ └── src │ ├── 2d.asm │ ├── binary │ ├── bitmap.PRG │ ├── colormem.PRG │ ├── fonts.map │ ├── map.asm │ ├── sprites.raw │ └── videomem.PRG │ ├── includes │ ├── checkTerrain.asm │ ├── drawMap.asm │ ├── drawPlayer.asm │ ├── drawText.asm │ ├── drawTile.asm │ ├── irqs │ │ └── topFrameIRQ.asm │ ├── searchText.asm │ └── tables │ │ ├── drawTileTables.asm │ │ ├── playerPositionTables.asm │ │ └── textTables.asm │ └── texts │ ├── text01.asm │ └── text02.asm └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/.gitignore -------------------------------------------------------------------------------- /.java-version: -------------------------------------------------------------------------------- 1 | graalvm64-17.0.6 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Docs/Tutorials/BigBlue/TaleOfBigBlue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Docs/Tutorials/BigBlue/TaleOfBigBlue.md -------------------------------------------------------------------------------- /Docs/Tutorials/BigBlue/blueInEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Docs/Tutorials/BigBlue/blueInEditor.png -------------------------------------------------------------------------------- /Docs/Tutorials/BigBlue/blueMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Docs/Tutorials/BigBlue/blueMap.png -------------------------------------------------------------------------------- /Docs/Tutorials/BigBlue/blueOnScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Docs/Tutorials/BigBlue/blueOnScreen.png -------------------------------------------------------------------------------- /Docs/Tutorials/BigBlue/blueTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Docs/Tutorials/BigBlue/blueTile.png -------------------------------------------------------------------------------- /Docs/Tutorials/BigBlue/mipMap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Docs/Tutorials/BigBlue/mipMap.gif -------------------------------------------------------------------------------- /Docs/Tutorials/BigBlue/packing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Docs/Tutorials/BigBlue/packing.png -------------------------------------------------------------------------------- /Docs/Tutorials/BigBlue/partScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Docs/Tutorials/BigBlue/partScreen.png -------------------------------------------------------------------------------- /Docs/Tutorials/BigBlue/wolfdemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Docs/Tutorials/BigBlue/wolfdemo.png -------------------------------------------------------------------------------- /Docs/Tutorials/PLASMA/User Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Docs/Tutorials/PLASMA/User Manual.md -------------------------------------------------------------------------------- /Example Content/Ancient Legends/Ancient Legends Manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Example Content/Ancient Legends/Ancient Legends Manual.txt -------------------------------------------------------------------------------- /Example Content/Ancient Legends/Disk images/Ancient Legends - 800k version.2mg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Example Content/Ancient Legends/Disk images/Ancient Legends - 800k version.2mg -------------------------------------------------------------------------------- /Example Content/Ancient Legends/Disk images/Ancient Legends - Disk 1.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Example Content/Ancient Legends/Disk images/Ancient Legends - Disk 1.dsk -------------------------------------------------------------------------------- /Example Content/Ancient Legends/Disk images/Ancient Legends - Disk 2.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Example Content/Ancient Legends/Disk images/Ancient Legends - Disk 2.dsk -------------------------------------------------------------------------------- /Example Content/Ancient Legends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Example Content/Ancient Legends/README.md -------------------------------------------------------------------------------- /Example Content/Ancient Legends/world.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Example Content/Ancient Legends/world.xml -------------------------------------------------------------------------------- /Example Content/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example Content/image_examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Example Content/image_examples.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/LICENSE -------------------------------------------------------------------------------- /OutlawEditor/.gitignore: -------------------------------------------------------------------------------- 1 | /*~ 2 | /nb-configuration.xml 3 | /OutlawEditor.iml 4 | /.idea/ -------------------------------------------------------------------------------- /OutlawEditor/.java-version: -------------------------------------------------------------------------------- 1 | graalvm64-17.0.6 2 | -------------------------------------------------------------------------------- /OutlawEditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/README.md -------------------------------------------------------------------------------- /OutlawEditor/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/catalog.xml -------------------------------------------------------------------------------- /OutlawEditor/nbactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/nbactions.xml -------------------------------------------------------------------------------- /OutlawEditor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/pom.xml -------------------------------------------------------------------------------- /OutlawEditor/src/main/deploy/package/macosx/OutlawEditor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/deploy/package/macosx/OutlawEditor.icns -------------------------------------------------------------------------------- /OutlawEditor/src/main/deploy/package/windows/OutlawEditor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/deploy/package/windows/OutlawEditor.ico -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/module-info.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/Application.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/Editor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/Editor.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/FileUtils.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/GlobalEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/GlobalEditor.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/ImageClip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/ImageClip.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/ImageEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/ImageEditor.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/ImageRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/ImageRenderer.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/MapEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/MapEditor.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/MythosEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/MythosEditor.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/SheetEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/SheetEditor.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/TileEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/TileEditor.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/TileRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/TileRenderer.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/TransferHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/TransferHelper.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/api/MenuAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/api/MenuAction.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/api/Platform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/api/Platform.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/apple/FillPattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/apple/FillPattern.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/apple/Palette.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/apple/Palette.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/data/DataObserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/data/DataObserver.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/data/DataProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/data/DataProducer.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/data/DataUtilities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/data/DataUtilities.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/data/PropertyHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/data/PropertyHelper.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/data/TileInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/data/TileInstance.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/data/TileMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/data/TileMap.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/data/TileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/data/TileUtils.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/data/TilesetUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/data/TilesetUtils.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/spelling/Suggestion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/spelling/Suggestion.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/ui/ModalEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/ui/ModalEditor.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/ui/TileSelectModal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/ui/TileSelectModal.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/ui/ToolType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/ui/ToolType.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/java/org/badvision/outlaweditor/ui/UIAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/java/org/badvision/outlaweditor/ui/UIAction.java -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/ApplicationUI.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/ApplicationUI.fxml -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/META-INF/native-image/filter-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/META-INF/native-image/filter-file.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/META-INF/native-image/jni-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/META-INF/native-image/jni-config.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/META-INF/native-image/proxy-config.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/META-INF/native-image/reflect-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/META-INF/native-image/reflect-config.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/META-INF/native-image/resource-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/META-INF/native-image/resource-config.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/Menubar.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/Menubar.fxml -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/MythosScriptEditor.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/MythosScriptEditor.fxml -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/SheetEditor.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/SheetEditor.fxml -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/globalEditorTab.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/globalEditorTab.fxml -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/imageConversionWizard.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/imageConversionWizard.fxml -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/imageEditorTab.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/imageEditorTab.fxml -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/about.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/about.xcf -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/arrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/arrowUp.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/background.jpg -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/draw-rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/draw-rectangle.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/eraser-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/eraser-icon.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/eraser.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/fill.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/icon_brokenLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/icon_brokenLink.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/not_visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/not_visible.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/pencil_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/pencil_big.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/pencil_med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/pencil_med.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/pencil_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/pencil_small.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/revolver_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/revolver_icon.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/visible.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/zoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/zoomIn.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/images/zoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/images/zoomOut.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/jaxb/OutlawSchema/OutlawSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/jaxb/OutlawSchema/OutlawSchema.xsd -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mapEditorTab.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mapEditorTab.fxml -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/blockly_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/blockly_compressed.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/blocks_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/blocks_compressed.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/dictionary.txt -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/1x1.gif -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/click.mp3 -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/click.ogg -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/click.wav -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/delete.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/delete.mp3 -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/delete.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/delete.ogg -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/delete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/delete.wav -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/handclosed.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/handclosed.cur -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/handopen.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/handopen.cur -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/icons.svg -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/quote0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/quote0.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/quote1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/quote1.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/sprites.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/sprites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/sprites.svg -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/trashbody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/trashbody.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/trashlid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/trashlid.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/media/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/media/tree.png -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/ar.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/az-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/az-latn.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/az.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/ca.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/cs.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/da.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/de.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/el.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/en.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/en_us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/en_us.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/es.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/fa.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/fi.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/fr.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/he.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/hu.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/ia.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/id.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/is.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/it.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/ja.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/ko.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/lrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/lrc.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/ms.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/nb.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/nl.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/no.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/pl.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/pms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/pms.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/pt-br.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/pt.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/ro.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/ru.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/sq.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/sr.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/sv.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/th.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/tl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/tl.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/tr.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/uk.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/vi.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/zh-hans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/zh-hans.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/js/zh-hant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/js/zh-hant.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/ar.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/az.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/be-tarask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/be-tarask.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/br.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/ca.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/cs.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/da.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/de.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/el.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/en.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/es.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/fa.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/fi.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/fr.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/he.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/hi.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/hu.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/ia.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/id.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/is.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/it.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/ja.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/keys.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/ko.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/lrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/lrc.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/ms.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/nb.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/nl.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/pl.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/pms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/pms.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/pt-br.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/pt.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/qqq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/qqq.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/ro.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/ru.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/sq.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/sr.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/sv.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/synonyms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/synonyms.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/th.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/tl.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/tr.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/uk.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/vi.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/zh-hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/zh-hans.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/json/zh-hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/json/zh-hant.json -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/msg/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/msg/messages.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/mythos-editor/html/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/mythos-editor/html/editor.html -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/mythos/mythos-editor/js/mythos_uncompressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/mythos/mythos-editor/js/mythos_uncompressed.js -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/styles/applicationui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/styles/applicationui.css -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/styles/imageconversionwizard.css: -------------------------------------------------------------------------------- 1 | .mainFxmlClass { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/styles/mythosscripteditor.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Empty Stylesheet file. 3 | */ 4 | 5 | .mainFxmlClass { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/styles/styles.css -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/testData/blocklytest1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/testData/blocklytest1.xml -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/testData/blocklytest2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/testData/blocklytest2.xml -------------------------------------------------------------------------------- /OutlawEditor/src/main/resources/tileEditorTab.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/OutlawEditor/src/main/resources/tileEditorTab.fxml -------------------------------------------------------------------------------- /Platform/Apple/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/.project -------------------------------------------------------------------------------- /Platform/Apple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/README.md -------------------------------------------------------------------------------- /Platform/Apple/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/build.xml -------------------------------------------------------------------------------- /Platform/Apple/demos/imagedemo.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/demos/imagedemo.dsk -------------------------------------------------------------------------------- /Platform/Apple/tools/A2Copy/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/A2Copy/build.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/A2Copy/lib/VERSIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/A2Copy/lib/VERSIONS -------------------------------------------------------------------------------- /Platform/Apple/tools/A2Copy/lib/ac.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/A2Copy/lib/ac.jar -------------------------------------------------------------------------------- /Platform/Apple/tools/A2Copy/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/A2Copy/manifest.mf -------------------------------------------------------------------------------- /Platform/Apple/tools/A2Copy/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/A2Copy/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/A2Copy/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/A2Copy/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Platform/Apple/tools/A2Copy/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/A2Copy/nbproject/project.properties -------------------------------------------------------------------------------- /Platform/Apple/tools/A2Copy/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/A2Copy/nbproject/project.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/A2Copy/src/a2copy/A2Copy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/A2Copy/src/a2copy/A2Copy.java -------------------------------------------------------------------------------- /Platform/Apple/tools/A2PackPlugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/A2PackPlugin/pom.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/ACME_Lib/6502/Help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/ACME_Lib/6502/Help.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/ACME_Lib/65816/Help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/ACME_Lib/65816/Help.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/ACME_Lib/Own/Help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/ACME_Lib/Own/Help.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/File_ID.Diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/File_ID.Diz -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/ReadMe.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/acme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/acme -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/docs/65816.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/docs/65816.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/docs/AddrModes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/docs/AddrModes.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/docs/AllPOs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/docs/AllPOs.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/docs/COPYING -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/docs/Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/docs/Changes.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/docs/Errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/docs/Errors.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/docs/Example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/docs/Example.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/docs/Help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/docs/Help.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/docs/Illegals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/docs/Illegals.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/docs/Lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/docs/Lib.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/docs/QuickRef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/docs/QuickRef.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/docs/Source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/docs/Source.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/docs/Upgrade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/docs/Upgrade.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/examples/ddrv128.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/examples/ddrv128.exp -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/examples/ddrv64.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/examples/ddrv64.exp -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/examples/macedit.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/examples/macedit.exp -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/examples/me/tables.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/examples/me/tables.bin -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/Makefile -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/Makefile.dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/Makefile.dos -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/Makefile.riscos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/Makefile.riscos -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/_amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/_amiga.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/_dos.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/_dos.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/_riscos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/_riscos.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/_riscos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/_riscos.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/_std.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/_std.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/acme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/acme -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/acme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/acme.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/acme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/acme.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/acme.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/acme.jar -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/alu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/alu.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/alu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/alu.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/cliargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/cliargs.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/cliargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/cliargs.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/config.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/cpu.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/cpu.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/dynabuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/dynabuf.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/dynabuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/dynabuf.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/encoding.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/encoding.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/flow.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/flow.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/global.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/global.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/input.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/input.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/label.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/label.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/macro.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/macro.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/mnemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/mnemo.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/mnemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/mnemo.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/output.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/output.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/platform.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/platform.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/section.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/section.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/section.h -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/tree.c -------------------------------------------------------------------------------- /Platform/Apple/tools/ACME/src/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ACME/src/tree.h -------------------------------------------------------------------------------- /Platform/Apple/tools/AppPackaging/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/AppPackaging/.gitignore -------------------------------------------------------------------------------- /Platform/Apple/tools/AppPackaging/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/AppPackaging/build_all.bat -------------------------------------------------------------------------------- /Platform/Apple/tools/AppPackaging/game_icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/AppPackaging/game_icon.icns -------------------------------------------------------------------------------- /Platform/Apple/tools/AppPackaging/game_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/AppPackaging/game_icon.ico -------------------------------------------------------------------------------- /Platform/Apple/tools/AppPackaging/packr.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/AppPackaging/packr.jar -------------------------------------------------------------------------------- /Platform/Apple/tools/AppPackaging/update_builds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/AppPackaging/update_builds.sh -------------------------------------------------------------------------------- /Platform/Apple/tools/ConvertMidi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ConvertMidi/README.md -------------------------------------------------------------------------------- /Platform/Apple/tools/ConvertMidi/Ultima3.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ConvertMidi/Ultima3.mid -------------------------------------------------------------------------------- /Platform/Apple/tools/ConvertMidi/cvtmid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ConvertMidi/cvtmid.py -------------------------------------------------------------------------------- /Platform/Apple/tools/MerlinToText/merlinToText.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/MerlinToText/merlinToText.rb -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/README.md -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/PLVM02#4000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/PLVM02#4000 -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/cmd.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/cmd.pla -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/cmdstub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/cmdstub.s -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/cmdsys.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/cmdsys.plh -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/codegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/codegen.c -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/codegen.h -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/hello.pla: -------------------------------------------------------------------------------- 1 | include "cmdsys.plh" 2 | puts("Hello, world.\n") 3 | done 4 | -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/lex.c -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/lex.h -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/makefile -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/parse.c -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/parse.h: -------------------------------------------------------------------------------- 1 | int parse_module(void); 2 | -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/plasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/plasm.c -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/plasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/plasm.h -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/plasm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/plasm.jar -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/plvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/plvm.c -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/plvm02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/plvm02.s -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/plvm02zp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/plvm02zp.inc -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/symbols.h -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/test.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/test.pla -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/testlib.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/testlib.pla -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/testlib.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/testlib.plh -------------------------------------------------------------------------------- /Platform/Apple/tools/PLASMA/src/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PLASMA/src/tokens.h -------------------------------------------------------------------------------- /Platform/Apple/tools/PackPartitions/.java-version: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /Platform/Apple/tools/PackPartitions/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PackPartitions/build.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/PackPartitions/lib/groovy-4.0.24.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PackPartitions/lib/groovy-4.0.24.jar -------------------------------------------------------------------------------- /Platform/Apple/tools/PackPartitions/lib/groovy-ant-4.0.24.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PackPartitions/lib/groovy-ant-4.0.24.jar -------------------------------------------------------------------------------- /Platform/Apple/tools/PackPartitions/lib/groovy-json-4.0.24.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PackPartitions/lib/groovy-json-4.0.24.jar -------------------------------------------------------------------------------- /Platform/Apple/tools/PackPartitions/lib/groovy-xml-4.0.24.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PackPartitions/lib/groovy-xml-4.0.24.jar -------------------------------------------------------------------------------- /Platform/Apple/tools/PackPartitions/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PackPartitions/manifest.mf -------------------------------------------------------------------------------- /Platform/Apple/tools/PackPartitions/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PackPartitions/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/PackPartitions/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PackPartitions/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Platform/Apple/tools/PackPartitions/nbproject/groovy-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PackPartitions/nbproject/groovy-build.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/PackPartitions/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PackPartitions/nbproject/project.properties -------------------------------------------------------------------------------- /Platform/Apple/tools/PackPartitions/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PackPartitions/nbproject/project.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/PackPartitions/src/org/badvision/Lx47Algorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/PackPartitions/src/org/badvision/Lx47Algorithm.java -------------------------------------------------------------------------------- /Platform/Apple/tools/ProRWTS/.gitignore: -------------------------------------------------------------------------------- 1 | *.lst 2 | -------------------------------------------------------------------------------- /Platform/Apple/tools/ProRWTS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ProRWTS/Makefile -------------------------------------------------------------------------------- /Platform/Apple/tools/ProRWTS/PROBOOT#800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ProRWTS/PROBOOT#800 -------------------------------------------------------------------------------- /Platform/Apple/tools/ProRWTS/PRORWTS2#4000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ProRWTS/PRORWTS2#4000 -------------------------------------------------------------------------------- /Platform/Apple/tools/ProRWTS/proboot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ProRWTS/proboot.s -------------------------------------------------------------------------------- /Platform/Apple/tools/ProRWTS/prorwts2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/ProRWTS/prorwts2.s -------------------------------------------------------------------------------- /Platform/Apple/tools/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/build.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/imageConvert.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/imageConvert.groovy -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/.gitignore -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/.idea/.gitignore -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/.idea/azure/azureSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/.idea/azure/azureSettings.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/.idea/compiler.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/.idea/encodings.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/.idea/misc.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/.idea/vcs.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/.java-version: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/.vscode/launch.json -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/.vscode/settings.json -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/LICENSE -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/README-DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/README-DEVELOPERS.md -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/README-LAWLESS-SYSTEMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/README-LAWLESS-SYSTEMS.md -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/README-MACOS_packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/README-MACOS_packaging.md -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/README.md -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/build.sh -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/build_darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/build_darwin.sh -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/manifest.mf -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/misc/65c02_opcode_reference.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/misc/65c02_opcode_reference.xlsx -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/misc/8bitbunch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/misc/8bitbunch.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/misc/color_pattern_bitmask_calculator.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/misc/color_pattern_bitmask_calculator.xlsx -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/nb-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/nb-configuration.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/nbactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/nbactions.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/package-macos.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/package-macos.zsh -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/pom.xml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/readme-macos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/readme-macos.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | java -jar target/Jace.jar 4 | 5 | -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/AboutController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/AboutController.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/ConvertDiskImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/ConvertDiskImage.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/Emulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/Emulator.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/EmulatorUILogic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/EmulatorUILogic.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/JaceUIController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/JaceUIController.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/LawlessLegends.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/LawlessLegends.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/apple2e/Apple2e.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/apple2e/Apple2e.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/apple2e/MOS65C02.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/apple2e/MOS65C02.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/apple2e/RAM128k.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/apple2e/RAM128k.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/apple2e/SoftSwitches.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/apple2e/SoftSwitches.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/apple2e/Speaker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/apple2e/Speaker.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/apple2e/VideoDHGR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/apple2e/VideoDHGR.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/apple2e/VideoNTSC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/apple2e/VideoNTSC.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/applesoft/ApplesoftHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/applesoft/ApplesoftHandler.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/applesoft/ApplesoftProgram.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/applesoft/ApplesoftProgram.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/applesoft/Command.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/applesoft/Command.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/applesoft/Line.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/applesoft/Line.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/assembly/ACME_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/assembly/ACME_README.md -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/assembly/AcmeCompiler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/assembly/AcmeCompiler.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/assembly/AssemblyHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/assembly/AssemblyHandler.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/cheat/Cheats.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/cheat/Cheats.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/cheat/DynamicCheat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/cheat/DynamicCheat.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/cheat/MemoryCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/cheat/MemoryCell.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/cheat/MetaCheat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/cheat/MetaCheat.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/cheat/PrinceOfPersiaCheats.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/cheat/PrinceOfPersiaCheats.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/cheat/ProgramIdentity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/cheat/ProgramIdentity.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/config/AppSettingsDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/config/AppSettingsDTO.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/config/ConfigurableField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/config/ConfigurableField.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/config/Configuration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/config/Configuration.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/config/DeviceEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/config/DeviceEnum.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/config/DeviceSelection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/config/DeviceSelection.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/config/DynamicSelection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/config/DynamicSelection.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/config/ISelection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/config/ISelection.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/config/InvokableAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/config/InvokableAction.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/config/Name.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/config/Name.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/config/Reconfigurable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/config/Reconfigurable.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/CPU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/CPU.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/Card.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/Card.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/Computer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/Computer.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/Debugger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/Debugger.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/Device.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/Device.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/Font.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/Font.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/KeyHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/KeyHandler.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/Keyboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/Keyboard.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/Motherboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/Motherboard.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/PagedMemory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/PagedMemory.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/Palette.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/Palette.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/RAM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/RAM.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/RAMEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/RAMEvent.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/RAMListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/RAMListener.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/SoftSwitch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/SoftSwitch.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/SoundMixer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/SoundMixer.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/TimedDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/TimedDevice.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/Utility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/Utility.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/VersionInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/VersionInfo.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/Video.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/Video.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/core/VideoWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/core/VideoWriter.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/CardAppleMouse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/CardAppleMouse.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/CardDiskII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/CardDiskII.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/CardExt80Col.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/CardExt80Col.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/CardMockingboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/CardMockingboard.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/CardRamFactor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/CardRamFactor.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/CardRamworks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/CardRamworks.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/CardSSC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/CardSSC.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/CardThunderclock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/CardThunderclock.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/Cards.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/Cards.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/DiskIIDrive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/DiskIIDrive.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/FloppyDisk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/FloppyDisk.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/Joystick.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/Joystick.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/NoSlotClock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/NoSlotClock.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/ProdosDriver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/ProdosDriver.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/SmartportDriver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/SmartportDriver.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/VideoImpls.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/VideoImpls.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/massStorage/IDisk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/massStorage/IDisk.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/hardware/mockingboard/PSG.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/hardware/mockingboard/PSG.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/ide/CompileResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/ide/CompileResult.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/ide/HeadlessProgram.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/ide/HeadlessProgram.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/ide/IdeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/ide/IdeController.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/ide/LanguageHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/ide/LanguageHandler.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/ide/Program.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/ide/Program.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/ide/TextHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/ide/TextHandler.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/lawless/FPSMonitorDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/lawless/FPSMonitorDevice.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/lawless/LawlessComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/lawless/LawlessComputer.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/lawless/LawlessHacks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/lawless/LawlessHacks.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/lawless/LawlessImageTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/lawless/LawlessImageTool.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/lawless/LawlessVideo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/lawless/LawlessVideo.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/lawless/Media.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/lawless/Media.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/lawless/MediaPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/lawless/MediaPlayer.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/library/DiskType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/library/DiskType.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/library/MediaCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/library/MediaCache.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/library/MediaConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/library/MediaConsumer.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/library/MediaEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/library/MediaEntry.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/library/TocTreeModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/library/TocTreeModel.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/state/ObjectGraphNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/state/ObjectGraphNode.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/state/State.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/state/State.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/state/StateManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/state/StateManager.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/state/StateValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/state/StateValue.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/state/Stateful.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/state/Stateful.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/ui/Library.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/ui/Library.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/ui/MetacheatUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/ui/MetacheatUI.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/jace/ui/Watch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/jace/ui/Watch.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/java/module-info.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/META-INF/native-image/proxy-config.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/addon/lint/lint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/addon/lint/lint.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/addon/lint/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/addon/lint/lint.js -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/addon/merge/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/addon/merge/merge.js -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/addon/mode/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/addon/mode/simple.js -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/addon/tern/tern.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/addon/tern/tern.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/addon/tern/tern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/addon/tern/tern.js -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/addon/tern/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/addon/tern/worker.js -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/editor.html -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/lib/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/lib/codemirror.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/lib/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/lib/codemirror.js -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/mode/cobol/cobol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/mode/cobol/cobol.js -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/mode/diff/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/mode/diff/diff.js -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/mode/diff/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/mode/diff/index.html -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/mode/forth/forth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/mode/forth/forth.js -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/mode/index.html -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/mode/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/mode/meta.js -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/mode/z80/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/mode/z80/index.html -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/mode/z80/z80.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/mode/z80/z80.js -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/3024-day.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/3024-day.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/3024-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/3024-night.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/ambiance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/ambiance.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/blackboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/blackboard.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/cobalt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/cobalt.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/colorforth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/colorforth.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/dracula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/dracula.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/eclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/eclipse.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/elegant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/elegant.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/liquibyte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/liquibyte.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/material.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/mbo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/mbo.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/mdn-like.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/mdn-like.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/midnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/midnight.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/monokai.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/neat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/neat.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/neo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/neo.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/night.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/rubyblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/rubyblue.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/seti.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/seti.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/solarized.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/the-matrix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/the-matrix.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/ttcn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/ttcn.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/twilight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/twilight.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/xq-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/xq-dark.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/xq-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/xq-light.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/yeti.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/yeti.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/theme/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/theme/zenburn.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/codemirror/zero-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/codemirror/zero-page.html -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/fxml/About.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/fxml/About.fxml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/fxml/Configuration.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/fxml/Configuration.fxml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/fxml/JaceUI.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/fxml/JaceUI.fxml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/fxml/Metacheat.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/fxml/Metacheat.fxml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/fxml/editor.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/fxml/editor.fxml -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/35_floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/35_floppy.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/525_floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/525_floppy.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/DiskII.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/DiskII.rom -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/RAMFactor14.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/RAMFactor14.rom -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/SSC.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/SSC.rom -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/apple2e.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/apple2e.rom -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/apple2e_debug.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/apple2e_debug.rom -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/apple2plus.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/apple2plus.rom -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope0.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope10.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope11.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope13.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope14.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope4.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/ayenvelope8.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/bootscreen.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/bootscreen.bin -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/clock.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/clock_fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/clock_fix.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/disk_ii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/disk_ii.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/drive-harddisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/drive-harddisk.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/envelopes.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/envelopes.xcf -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/font.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/font.gif -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/font.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/game_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/game_icon.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/gamecontrollerdb.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/harddrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/harddrive.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/icon.icns -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/icon_exclaim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/icon_exclaim.gif -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/icon_keyboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/icon_keyboard.gif -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/input-mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/input-mouse.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/network-wired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/network-wired.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/ram.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/revolver_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/revolver_icon.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/rom_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/rom_image.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/sound/scores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/sound/scores.txt -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/jace/data/thunderclock_plus.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/jace/data/thunderclock_plus.rom -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/configuration.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Empty Stylesheet file. 3 | */ 4 | 5 | .mainFxmlClass { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/editor.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Empty Stylesheet file. 3 | */ 4 | 5 | .mainFxmlClass { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/aspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/aspect.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/brun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/brun.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/config.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/fast.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/fullscreen.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/ide.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/info.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/inspect.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/paste.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/play.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/plugin.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/reboot.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/rewind.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/screenshot.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/slow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/slow.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/icons/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/icons/sound.png -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/main/resources/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/main/resources/styles/style.css -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/AbstractFXTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/AbstractFXTest.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/ProgramException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/ProgramException.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/TestProgram.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/TestProgram.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/TestUtils.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/apple2e/CycleCountTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/apple2e/CycleCountTest.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/apple2e/Full65C02Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/apple2e/Full65C02Test.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/apple2e/VideoDHGRTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/apple2e/VideoDHGRTest.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/apple2e/VideoNTSCTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/apple2e/VideoNTSCTest.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/applesoft/ApplesoftTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/applesoft/ApplesoftTest.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/config/DumpConfigTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/config/DumpConfigTest.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/core/MemoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/core/MemoryTest.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/core/SoundTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/core/SoundTest.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/core/UtilityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/core/UtilityTest.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/hardware/CardSSCTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/hardware/CardSSCTest.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/hardware/FloppyDiskTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/hardware/FloppyDiskTest.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/java/jace/ide/ApplesoftTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/java/jace/ide/ApplesoftTest.java -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/resources/jace/bcd_test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/resources/jace/bcd_test.asm -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/test/resources/jace/lemonade_stand.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/test/resources/jace/lemonade_stand.bin -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/src/windows/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/tools/jace/src/windows/assets/icon.ico -------------------------------------------------------------------------------- /Platform/Apple/tools/jace/version.properties: -------------------------------------------------------------------------------- 1 | version=1.2-5723p.99-DEMO 2 | build.date=2025-08-02 3 | -------------------------------------------------------------------------------- /Platform/Apple/virtual/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/.gitignore -------------------------------------------------------------------------------- /Platform/Apple/virtual/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/.project -------------------------------------------------------------------------------- /Platform/Apple/virtual/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/b -------------------------------------------------------------------------------- /Platform/Apple/virtual/bm: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ./b && ./m 4 | -------------------------------------------------------------------------------- /Platform/Apple/virtual/bmg: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ./b && ./mg 4 | -------------------------------------------------------------------------------- /Platform/Apple/virtual/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/build.xml -------------------------------------------------------------------------------- /Platform/Apple/virtual/bundlePacker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/bundlePacker.sh -------------------------------------------------------------------------------- /Platform/Apple/virtual/c: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -x 4 | rm -rf build game*.{2mg,dsk} 5 | -------------------------------------------------------------------------------- /Platform/Apple/virtual/data/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /Platform/Apple/virtual/data/disks/base_140k.dsk.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/data/disks/base_140k.dsk.gz -------------------------------------------------------------------------------- /Platform/Apple/virtual/data/disks/base_5m.2mg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/data/disks/base_5m.2mg.gz -------------------------------------------------------------------------------- /Platform/Apple/virtual/data/disks/boot_patch_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/data/disks/boot_patch_readme.txt -------------------------------------------------------------------------------- /Platform/Apple/virtual/data/disks/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/data/disks/readme.txt -------------------------------------------------------------------------------- /Platform/Apple/virtual/data/disks/util.2mg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/data/disks/util.2mg.gz -------------------------------------------------------------------------------- /Platform/Apple/virtual/data/fonts/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/data/fonts/readme.txt -------------------------------------------------------------------------------- /Platform/Apple/virtual/data/world/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/data/world/readme.txt -------------------------------------------------------------------------------- /Platform/Apple/virtual/j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/j -------------------------------------------------------------------------------- /Platform/Apple/virtual/launch4j.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/launch4j.cfg.xml -------------------------------------------------------------------------------- /Platform/Apple/virtual/nm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/nm -------------------------------------------------------------------------------- /Platform/Apple/virtual/nmg: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ./nm && ./g 4 | -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/core/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/core/build.xml -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/core/decomp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/core/decomp.s -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/core/loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/core/loader.s -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/core/mem.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/core/mem.s -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/font/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/font/build.xml -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/font/font.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/font/font.s -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/font/fontEngine.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/font/fontEngine.s -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/font/hgrchr25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/font/hgrchr25.txt -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/font/hgrtbl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/font/hgrtbl.txt -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/include/fontEngine.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/include/fontEngine.i -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/include/global.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/include/global.i -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/include/hiBitAscii.ct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/include/hiBitAscii.ct -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/include/marks.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/include/marks.i -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/include/mem.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/include/mem.i -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/include/plasma.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/include/plasma.i -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/include/prorwts.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/include/prorwts.i -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/include/sample.build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/include/sample.build.props -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/include/sound.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/include/sound.i -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/marks/marks.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/marks/marks.s -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/mockbrd/main.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/automap.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/automap.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/automap.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/automap.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/build.xml -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/combat.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/combat.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/combat.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/combat.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/diskops.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/diskops.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/diskops.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/diskops.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/gamelib.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/gamelib.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/gameloop.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/gameloop.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/globalDefs.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/globalDefs.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/godmode.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/godmode.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/godmode.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/godmode.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/import.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/import.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/import.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/import.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/intimate.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/intimate.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/intimate.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/intimate.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/itemutil.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/itemutil.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/itemutil.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/itemutil.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/party.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/party.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/party.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/party.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/playtype.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/playtype.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/playtype.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/playtype.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/questlog.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/questlog.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/questlog.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/questlog.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/sndseq.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/sndseq.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/sndseq.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/sndseq.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/store.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/store.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/store.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/store.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/story.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/story.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/story.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/story.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/util3d.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/util3d.pla -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/plasma/util3d.plh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/plasma/util3d.plh -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/build.xml -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/expand.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/expand.s -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/expand_hdr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/expand_hdr.i -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/expand_split.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/expand_split.i -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/genExpand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/genExpand.py -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/javascript/intcast.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/javascript/intcast.htm -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/javascript/intcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/javascript/intcast.js -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/javascript/sprites/armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/javascript/sprites/armor.png -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/javascript/sprites/lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/javascript/sprites/lamp.png -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/javascript/sprites/plantgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/javascript/sprites/plantgreen.png -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/javascript/sprites/tablechairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/javascript/sprites/tablechairs.png -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/javascript/walls/walls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/javascript/walls/walls.png -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/javascript/walls/walls_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/javascript/walls/walls_1.png -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/javascript/walls/walls_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/javascript/walls/walls_2.png -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/javascript/walls/walls_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/javascript/walls/walls_3.png -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/javascript/walls/walls_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/javascript/walls/walls_4.png -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/render.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/render.i -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/raycast/render.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/raycast/render.s -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/sound/sound.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/sound/sound.s -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/tile/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/tile/build.xml -------------------------------------------------------------------------------- /Platform/Apple/virtual/src/tile/tileEngine.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/src/tile/tileEngine.s -------------------------------------------------------------------------------- /Platform/Apple/virtual/tools/extractText.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/tools/extractText.sh -------------------------------------------------------------------------------- /Platform/Apple/virtual/tools/getBlockTypes.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/tools/getBlockTypes.xslt -------------------------------------------------------------------------------- /Platform/Apple/virtual/tools/jacetest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/tools/jacetest.sh -------------------------------------------------------------------------------- /Platform/Apple/virtual/tools/prng.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/tools/prng.rb -------------------------------------------------------------------------------- /Platform/Apple/virtual/tools/processText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/tools/processText.py -------------------------------------------------------------------------------- /Platform/Apple/virtual/tools/replaceGetKey.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/tools/replaceGetKey.xslt -------------------------------------------------------------------------------- /Platform/Apple/virtual/tools/xformScript.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/Apple/virtual/tools/xformScript.rb -------------------------------------------------------------------------------- /Platform/C64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/README.txt -------------------------------------------------------------------------------- /Platform/C64/data/fonts.GEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/data/fonts.GEP -------------------------------------------------------------------------------- /Platform/C64/data/sprites.spd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/data/sprites.spd -------------------------------------------------------------------------------- /Platform/C64/data/tiles.GEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/data/tiles.GEP -------------------------------------------------------------------------------- /Platform/C64/demos/2d-demo-2015-05-21.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/demos/2d-demo-2015-05-21.prg -------------------------------------------------------------------------------- /Platform/C64/demos/2d-demo-2015-05-23.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/demos/2d-demo-2015-05-23.prg -------------------------------------------------------------------------------- /Platform/C64/demos/2d-demo-2016-01-14.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/demos/2d-demo-2016-01-14.prg -------------------------------------------------------------------------------- /Platform/C64/src/2d.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/2d.asm -------------------------------------------------------------------------------- /Platform/C64/src/binary/bitmap.PRG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/binary/bitmap.PRG -------------------------------------------------------------------------------- /Platform/C64/src/binary/colormem.PRG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/binary/colormem.PRG -------------------------------------------------------------------------------- /Platform/C64/src/binary/fonts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/binary/fonts.map -------------------------------------------------------------------------------- /Platform/C64/src/binary/map.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/binary/map.asm -------------------------------------------------------------------------------- /Platform/C64/src/binary/sprites.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/binary/sprites.raw -------------------------------------------------------------------------------- /Platform/C64/src/binary/videomem.PRG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/binary/videomem.PRG -------------------------------------------------------------------------------- /Platform/C64/src/includes/checkTerrain.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/includes/checkTerrain.asm -------------------------------------------------------------------------------- /Platform/C64/src/includes/drawMap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/includes/drawMap.asm -------------------------------------------------------------------------------- /Platform/C64/src/includes/drawPlayer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/includes/drawPlayer.asm -------------------------------------------------------------------------------- /Platform/C64/src/includes/drawText.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/includes/drawText.asm -------------------------------------------------------------------------------- /Platform/C64/src/includes/drawTile.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/includes/drawTile.asm -------------------------------------------------------------------------------- /Platform/C64/src/includes/irqs/topFrameIRQ.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/includes/irqs/topFrameIRQ.asm -------------------------------------------------------------------------------- /Platform/C64/src/includes/searchText.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/includes/searchText.asm -------------------------------------------------------------------------------- /Platform/C64/src/includes/tables/drawTileTables.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/includes/tables/drawTileTables.asm -------------------------------------------------------------------------------- /Platform/C64/src/includes/tables/playerPositionTables.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/includes/tables/playerPositionTables.asm -------------------------------------------------------------------------------- /Platform/C64/src/includes/tables/textTables.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/includes/tables/textTables.asm -------------------------------------------------------------------------------- /Platform/C64/src/texts/text01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/texts/text01.asm -------------------------------------------------------------------------------- /Platform/C64/src/texts/text02.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/Platform/C64/src/texts/text02.asm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badvision/lawless-legends/HEAD/README.md --------------------------------------------------------------------------------