├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .travis.yml ├── Compile.md ├── Layouts.md ├── License.txt ├── Makefile ├── Readme.md ├── config ├── default-display.cfg ├── default-emulator.cfg ├── default-filter.cfg ├── emulators │ └── script │ │ ├── db.nut │ │ ├── init.nut │ │ └── mame_init.nut ├── intro │ └── intro.nut ├── language │ ├── cn.msg │ ├── de.msg │ ├── en.msg │ ├── es.msg │ ├── fr.msg │ ├── it.msg │ ├── jp.msg │ ├── kr.msg │ ├── msg_template.txt │ ├── pt_br.msg │ └── tw.msg ├── layouts │ ├── Attrac-Man │ │ ├── Readme.md │ │ ├── blank.png │ │ ├── engine.nut │ │ ├── field.nut │ │ ├── field.png │ │ ├── layout.nut │ │ ├── layout.rol.nut │ │ ├── marquee.png │ │ └── resource.png │ ├── Basic │ │ ├── bg.png │ │ ├── layout.nut │ │ └── marquee.png │ ├── Cools │ │ ├── bg.jpg │ │ ├── bgmask.png │ │ ├── black.png │ │ ├── layout.nut │ │ ├── mask.png │ │ └── titlemask.png │ ├── Filter Grid │ │ ├── frame.png │ │ └── layout.nut │ ├── Grid │ │ ├── frame.png │ │ └── layout.nut │ ├── Orbit │ │ ├── bloom_shader.frag │ │ ├── flyer.png │ │ ├── frame.png │ │ ├── layout.nut │ │ ├── marquee.png │ │ ├── static.mp4 │ │ ├── tunnel-readme.txt │ │ ├── tunnel.mp4 │ │ └── wheel.png │ ├── Sample Animate │ │ ├── layout-00-intro.nut │ │ ├── layout-01-property-objects.nut │ │ ├── layout-02-property-additional-properties.nut │ │ ├── layout-03-property-presets.nut │ │ ├── layout-04-sprite-spritesheets.nut │ │ ├── layout-05-sprite-konami.nut │ │ ├── layout-06-sprite-presets.nut │ │ ├── layout-07-combine-animations.nut │ │ ├── layout-08-chaining-animations.nut │ │ ├── layout-09-tween-easing.nut │ │ ├── layout-10-particle-config.nut │ │ ├── layout-11-particle-presets.nut │ │ ├── layout-12-custom-functions.nut │ │ ├── layout-13-center-rotate-scaling.nut │ │ ├── layout-14-bug-test.nut │ │ ├── layout.nut │ │ └── resources │ │ │ ├── bg.png │ │ │ ├── debug-720p.png │ │ │ ├── debug.png │ │ │ ├── default.png │ │ │ ├── joystick-move.png │ │ │ ├── link.png │ │ │ ├── logo-verion.png │ │ │ ├── mario.png │ │ │ ├── pixel.png │ │ │ ├── shared.nut │ │ │ ├── tutorial_title.png │ │ │ └── tutorialbg.png │ └── Verticools │ │ ├── bg.jpg │ │ └── layout.nut ├── loader │ ├── attract_xml.nut │ ├── hyperspin.nut │ ├── loader.nut │ ├── mala.nut │ └── mamewah.nut ├── menu-art │ └── wheel │ │ ├── exit.png │ │ ├── mess-genesis.png │ │ ├── mess-snes.png │ │ └── nestopia.png ├── modules │ ├── animate.nut │ ├── animate │ │ ├── particles.nut │ │ ├── particles │ │ │ ├── images │ │ │ │ ├── ball.png │ │ │ │ ├── bubbles1.png │ │ │ │ ├── clouds-toon-1.png │ │ │ │ ├── clouds-toon-2.png │ │ │ │ ├── clouds-toon-3.png │ │ │ │ ├── clouds-toon2-1.png │ │ │ │ ├── clouds-toon2-2.png │ │ │ │ ├── clouds-toon2-3.png │ │ │ │ ├── clouds-toon2-4.png │ │ │ │ ├── clouds-toon2-5.png │ │ │ │ ├── debug.png │ │ │ │ ├── default.png │ │ │ │ ├── invader.png │ │ │ │ ├── invader2.png │ │ │ │ ├── invader3.png │ │ │ │ ├── particle-text.png │ │ │ │ ├── snow.png │ │ │ │ └── sparkle.png │ │ │ ├── pixel.png │ │ │ └── presets.nut │ │ ├── property.nut │ │ ├── property │ │ │ ├── images │ │ │ │ └── logo.png │ │ │ └── presets.nut │ │ ├── sprite.nut │ │ └── sprite │ │ │ ├── images │ │ │ ├── button-press-red.png │ │ │ ├── button-press-white.png │ │ │ ├── joystick-move.png │ │ │ └── pacland.gif │ │ │ └── presets.nut │ ├── animlist.nut │ ├── conveyor.nut │ ├── core │ │ ├── logger.nut │ │ ├── module.nut │ │ └── properties.nut │ ├── extended │ │ ├── README.md │ │ ├── animate.nut │ │ ├── animations │ │ │ ├── arc │ │ │ │ └── arc.nut │ │ │ ├── example │ │ │ │ ├── example.nut │ │ │ │ ├── invader.png │ │ │ │ ├── invader2.png │ │ │ │ └── invader3.png │ │ │ ├── particles │ │ │ │ ├── default.png │ │ │ │ ├── particles.nut │ │ │ │ ├── pixel.png │ │ │ │ └── presets │ │ │ │ │ ├── bubbles1.png │ │ │ │ │ ├── clouds-toon-1.png │ │ │ │ │ ├── clouds-toon-2.png │ │ │ │ │ ├── clouds-toon-3.png │ │ │ │ │ ├── clouds-toon2-1.png │ │ │ │ │ ├── clouds-toon2-2.png │ │ │ │ │ ├── clouds-toon2-3.png │ │ │ │ │ ├── clouds-toon2-4.png │ │ │ │ │ ├── clouds-toon2-5.png │ │ │ │ │ ├── default.png │ │ │ │ │ ├── invader.png │ │ │ │ │ ├── invader2.png │ │ │ │ │ ├── invader3.png │ │ │ │ │ ├── presets.nut │ │ │ │ │ ├── snow.png │ │ │ │ │ └── sparkle.png │ │ │ ├── property │ │ │ │ └── property.nut │ │ │ ├── sets.nut │ │ │ └── translate │ │ │ │ └── translate.nut │ │ ├── extended.nut │ │ ├── extensions │ │ │ └── debugger │ │ │ │ ├── debugger.nut │ │ │ │ └── outline.png │ │ └── objects │ │ │ ├── orbit │ │ │ ├── bloom_shader.frag │ │ │ ├── flyer.png │ │ │ ├── frame.png │ │ │ ├── marquee.png │ │ │ ├── orbit.nut │ │ │ └── wheel.png │ │ │ ├── warp │ │ │ ├── dot.png │ │ │ └── warp.nut │ │ │ └── wheel │ │ │ └── wheel.nut │ ├── fade.nut │ ├── file-format.nut │ ├── file-layout.nut │ ├── file-layout │ │ ├── attractmode.nut │ │ ├── mamewah.nut │ │ └── pixel.png │ ├── file.nut │ ├── objects │ │ ├── scrollingtext.nut │ │ └── scrollingtext │ │ │ └── pixel.png │ ├── pan-and-scan.nut │ ├── preserve-art.nut │ ├── shuffle │ │ ├── module.nut │ │ └── readme.md │ ├── spritesheet.nut │ └── submenu.nut ├── plugins │ ├── AudioMode.nut │ ├── FPSMonitor │ │ ├── fps_font.ttf │ │ ├── fps_graph.png │ │ └── plugin.nut │ ├── History.xml │ │ ├── file_util.nut │ │ └── plugin.nut │ ├── KeyboardSearch.nut │ ├── KonamiCode.nut │ ├── LEDBlinky.nut │ ├── MultiMon.nut │ ├── ResFix.nut │ ├── RocketLauncher │ │ ├── file_util.nut │ │ └── plugin.nut │ ├── RotationControl.nut │ ├── SpecificDisplay.nut │ ├── UltraStik360.nut │ ├── UtilityMenu │ │ ├── any_command.nut │ │ └── plugin.nut │ └── eSpeak │ │ └── plugin.nut ├── romlists │ └── mame │ │ ├── neogeo.tag │ │ ├── nofiller_2p.tag │ │ ├── nofiller_4p.tag │ │ ├── nofiller_chd.tag │ │ └── vsnes.tag ├── screensaver │ └── screensaver.nut └── shaders │ └── default │ ├── add.frag │ ├── alpha.frag │ ├── multiply.frag │ ├── overlay.frag │ ├── premultiplied.frag │ ├── screen.frag │ └── subtract.frag ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── install ├── rules └── source │ └── format ├── extlibs ├── audio │ ├── Audio │ │ ├── ALCheck.cpp │ │ ├── AudioDevice.cpp │ │ ├── Listener.cpp │ │ ├── SoundSource.cpp │ │ └── SoundStream.cpp │ └── include │ │ └── Audio │ │ ├── ALCheck.hpp │ │ ├── AudioDevice.hpp │ │ ├── Listener.hpp │ │ ├── SoundSource.hpp │ │ └── SoundStream.hpp ├── expat │ ├── ascii.h │ ├── asciitab.h │ ├── expat.h │ ├── expat_external.h │ ├── iasciitab.h │ ├── internal.h │ ├── latin1tab.h │ ├── nametab.h │ ├── siphash.h │ ├── utf8tab.h │ ├── winconfig.h │ ├── xmlparse.c │ ├── xmlrole.c │ ├── xmlrole.h │ ├── xmltok.c │ ├── xmltok.h │ ├── xmltok_impl.c │ ├── xmltok_impl.h │ └── xmltok_ns.c ├── gameswf │ ├── base │ │ ├── GCBench.cpp │ │ ├── Stackwalker.cpp │ │ ├── Stackwalker.h │ │ ├── component_hackery.cpp │ │ ├── configvars.cpp │ │ ├── configvars.h │ │ ├── container.cpp │ │ ├── container.h │ │ ├── cschema.h │ │ ├── demo.cpp │ │ ├── demo.h │ │ ├── dlmalloc.c │ │ ├── dlmalloc.h │ │ ├── ear_clip_triangulate.h │ │ ├── ear_clip_triangulate_float.cpp │ │ ├── ear_clip_triangulate_impl.h │ │ ├── ear_clip_triangulate_sint16.cpp │ │ ├── file_util.cpp │ │ ├── file_util.h │ │ ├── grid_index.h │ │ ├── image.cpp │ │ ├── image.h │ │ ├── image_filters.cpp │ │ ├── jpeg.cpp │ │ ├── jpeg.h │ │ ├── logger.cpp │ │ ├── logger.h │ │ ├── membuf.cpp │ │ ├── membuf.h │ │ ├── ogl.cpp │ │ ├── ogl.h │ │ ├── png_helper.cpp │ │ ├── png_helper.h │ │ ├── postscript.cpp │ │ ├── postscript.h │ │ ├── smart_ptr.h │ │ ├── test_ogl.cpp │ │ ├── triangulate.h │ │ ├── triangulate_float.cpp │ │ ├── triangulate_impl.h │ │ ├── triangulate_sint32.cpp │ │ ├── tu_config.h │ │ ├── tu_file.cpp │ │ ├── tu_file.h │ │ ├── tu_file_SDL.cpp │ │ ├── tu_gc.h │ │ ├── tu_gc_singlethreaded_marksweep.cpp │ │ ├── tu_gc_singlethreaded_marksweep.h │ │ ├── tu_gc_singlethreaded_refcount.h │ │ ├── tu_gc_test.cpp │ │ ├── tu_gc_test_impl.h │ │ ├── tu_loadlib.cpp │ │ ├── tu_loadlib.h │ │ ├── tu_math.h │ │ ├── tu_memdebug.h │ │ ├── tu_opengl_includes.h │ │ ├── tu_queue.h │ │ ├── tu_random.cpp │ │ ├── tu_random.h │ │ ├── tu_swap.h │ │ ├── tu_timer.cpp │ │ ├── tu_timer.h │ │ ├── tu_types.cpp │ │ ├── tu_types.h │ │ ├── utf8.cpp │ │ ├── utf8.h │ │ ├── utility.cpp │ │ ├── utility.h │ │ ├── vert_types.h │ │ ├── weak_ptr.h │ │ ├── zlib_adapter.cpp │ │ └── zlib_adapter.h │ ├── compatibility_include.h │ └── gameswf │ │ ├── NOTES.txt │ │ ├── TODO │ │ ├── gameswf.h │ │ ├── gameswf_abc.cpp │ │ ├── gameswf_abc.h │ │ ├── gameswf_action.cpp │ │ ├── gameswf_action.h │ │ ├── gameswf_as_classes │ │ ├── as_array.cpp │ │ ├── as_array.h │ │ ├── as_boolean.cpp │ │ ├── as_boolean.h │ │ ├── as_broadcaster.cpp │ │ ├── as_broadcaster.h │ │ ├── as_class.cpp │ │ ├── as_class.h │ │ ├── as_color.cpp │ │ ├── as_color.h │ │ ├── as_color_transform.cpp │ │ ├── as_color_transform.h │ │ ├── as_date.cpp │ │ ├── as_date.h │ │ ├── as_event.cpp │ │ ├── as_event.h │ │ ├── as_flash.cpp │ │ ├── as_flash.h │ │ ├── as_geom.cpp │ │ ├── as_geom.h │ │ ├── as_global.cpp │ │ ├── as_global.h │ │ ├── as_key.cpp │ │ ├── as_key.h │ │ ├── as_loadvars.cpp │ │ ├── as_loadvars.h │ │ ├── as_math.cpp │ │ ├── as_math.h │ │ ├── as_matrix.cpp │ │ ├── as_matrix.h │ │ ├── as_mcloader.cpp │ │ ├── as_mcloader.h │ │ ├── as_mouse.cpp │ │ ├── as_mouse.h │ │ ├── as_mouse_event.cpp │ │ ├── as_mouse_event.h │ │ ├── as_netconnection.cpp │ │ ├── as_netconnection.h │ │ ├── as_netstream.cpp │ │ ├── as_netstream.h │ │ ├── as_number.cpp │ │ ├── as_number.h │ │ ├── as_point.cpp │ │ ├── as_point.h │ │ ├── as_selection.cpp │ │ ├── as_selection.h │ │ ├── as_sharedobject.cpp │ │ ├── as_sharedobject.h │ │ ├── as_sound.cpp │ │ ├── as_sound.h │ │ ├── as_string.cpp │ │ ├── as_string.h │ │ ├── as_textformat.cpp │ │ ├── as_textformat.h │ │ ├── as_transform.cpp │ │ ├── as_transform.h │ │ ├── as_xml.cpp │ │ ├── as_xml.h │ │ ├── as_xmlsocket.cpp │ │ └── as_xmlsocket.h │ │ ├── gameswf_as_sprite.cpp │ │ ├── gameswf_as_sprite.h │ │ ├── gameswf_avm2.cpp │ │ ├── gameswf_avm2.h │ │ ├── gameswf_avm2_jit.cpp │ │ ├── gameswf_batch_run.py │ │ ├── gameswf_batch_test.py │ │ ├── gameswf_button.cpp │ │ ├── gameswf_button.h │ │ ├── gameswf_canvas.cpp │ │ ├── gameswf_canvas.h │ │ ├── gameswf_character.cpp │ │ ├── gameswf_character.h │ │ ├── gameswf_disasm.cpp │ │ ├── gameswf_disasm.h │ │ ├── gameswf_dlist.cpp │ │ ├── gameswf_dlist.h │ │ ├── gameswf_environment.cpp │ │ ├── gameswf_environment.h │ │ ├── gameswf_filters.cpp │ │ ├── gameswf_filters.h │ │ ├── gameswf_font.cpp │ │ ├── gameswf_font.h │ │ ├── gameswf_fontlib.cpp │ │ ├── gameswf_fontlib.h │ │ ├── gameswf_freetype.cpp │ │ ├── gameswf_freetype.h │ │ ├── gameswf_function.cpp │ │ ├── gameswf_function.h │ │ ├── gameswf_impl.cpp │ │ ├── gameswf_impl.h │ │ ├── gameswf_jit.cpp │ │ ├── gameswf_jit.h │ │ ├── gameswf_jit_opcode.cpp │ │ ├── gameswf_jit_opcode.h │ │ ├── gameswf_listener.cpp │ │ ├── gameswf_listener.h │ │ ├── gameswf_log.cpp │ │ ├── gameswf_log.h │ │ ├── gameswf_morph2.cpp │ │ ├── gameswf_morph2.h │ │ ├── gameswf_movie_def.cpp │ │ ├── gameswf_movie_def.h │ │ ├── gameswf_mutex.cpp │ │ ├── gameswf_mutex.h │ │ ├── gameswf_object.cpp │ │ ├── gameswf_object.h │ │ ├── gameswf_parser.cpp │ │ ├── gameswf_player.cpp │ │ ├── gameswf_player.h │ │ ├── gameswf_processor.cpp │ │ ├── gameswf_render.cpp │ │ ├── gameswf_render.h │ │ ├── gameswf_render_handler_d3d.cpp │ │ ├── gameswf_render_handler_ogl.cpp │ │ ├── gameswf_render_handler_ogles.cpp │ │ ├── gameswf_render_handler_xbox.cpp │ │ ├── gameswf_root.cpp │ │ ├── gameswf_root.h │ │ ├── gameswf_shape.cpp │ │ ├── gameswf_shape.h │ │ ├── gameswf_sound.cpp │ │ ├── gameswf_sound.h │ │ ├── gameswf_sound_handler_openal.cpp │ │ ├── gameswf_sound_handler_openal.h │ │ ├── gameswf_sound_handler_sdl.cpp │ │ ├── gameswf_sound_handler_sdl.h │ │ ├── gameswf_sprite.cpp │ │ ├── gameswf_sprite.h │ │ ├── gameswf_sprite_def.cpp │ │ ├── gameswf_sprite_def.h │ │ ├── gameswf_stream.cpp │ │ ├── gameswf_stream.h │ │ ├── gameswf_styles.cpp │ │ ├── gameswf_styles.h │ │ ├── gameswf_tesselate.cpp │ │ ├── gameswf_tesselate.h │ │ ├── gameswf_test_ogl.cpp │ │ ├── gameswf_text.cpp │ │ ├── gameswf_text.h │ │ ├── gameswf_tools.cpp │ │ ├── gameswf_types.cpp │ │ ├── gameswf_types.h │ │ ├── gameswf_value.cpp │ │ ├── gameswf_value.h │ │ ├── gameswf_video_impl.cpp │ │ ├── gameswf_video_impl.h │ │ └── platforms │ │ ├── gameswf_jit_x86.h │ │ └── gameswf_jit_x86.hpp ├── miniz │ ├── miniz.c │ └── miniz.h ├── nowide │ ├── console_buffer.cpp │ ├── console_buffer.hpp │ ├── cstdio.cpp │ ├── cstdlib.cpp │ ├── filebuf.cpp │ ├── iostream.cpp │ ├── nowide │ │ ├── args.hpp │ │ ├── cenv.hpp │ │ ├── config.hpp │ │ ├── convert.hpp │ │ ├── cstdio.hpp │ │ ├── cstdlib.hpp │ │ ├── detail │ │ │ ├── convert.hpp │ │ │ ├── is_path.hpp │ │ │ ├── is_string_container.hpp │ │ │ └── utf.hpp │ │ ├── encoding_errors.hpp │ │ ├── encoding_utf.hpp │ │ ├── filebuf.hpp │ │ ├── filesystem.hpp │ │ ├── fstream.hpp │ │ ├── iostream.hpp │ │ ├── replacement.hpp │ │ ├── scoped_ptr.hpp │ │ ├── stackstring.hpp │ │ ├── stat.hpp │ │ ├── system.hpp │ │ ├── utf.hpp │ │ ├── utf │ │ │ ├── convert.hpp │ │ │ └── utf.hpp │ │ ├── utf8_codecvt.hpp │ │ └── windows.hpp │ └── stat.cpp ├── nvapi │ ├── nvapi.hpp │ └── nvapi_definitions.hpp ├── rapidjson │ ├── include │ │ └── rapidjson │ │ │ ├── allocators.h │ │ │ ├── cursorstreamwrapper.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ ├── en.h │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ ├── biginteger.h │ │ │ ├── diyfp.h │ │ │ ├── dtoa.h │ │ │ ├── ieee754.h │ │ │ ├── itoa.h │ │ │ ├── meta.h │ │ │ ├── pow10.h │ │ │ ├── regex.h │ │ │ ├── stack.h │ │ │ ├── strfunc.h │ │ │ ├── strtod.h │ │ │ └── swap.h │ │ │ ├── istreamwrapper.h │ │ │ ├── memorybuffer.h │ │ │ ├── memorystream.h │ │ │ ├── msinttypes │ │ │ ├── inttypes.h │ │ │ └── stdint.h │ │ │ ├── ostreamwrapper.h │ │ │ ├── pointer.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── schema.h │ │ │ ├── stream.h │ │ │ ├── stringbuffer.h │ │ │ └── writer.h │ └── license.txt ├── sqrat │ └── include │ │ ├── sqrat.h │ │ └── sqrat │ │ ├── sqratAllocator.h │ │ ├── sqratArray.h │ │ ├── sqratClass.h │ │ ├── sqratClassType.h │ │ ├── sqratConst.h │ │ ├── sqratFunction.h │ │ ├── sqratGlobalMethods.h │ │ ├── sqratMemberMethods.h │ │ ├── sqratObject.h │ │ ├── sqratOverloadMethods.h │ │ ├── sqratScript.h │ │ ├── sqratTable.h │ │ ├── sqratTypes.h │ │ ├── sqratUtil.h │ │ ├── sqratVM.h │ │ └── sqratext_Ref.h └── squirrel │ ├── COPYRIGHT │ ├── HISTORY │ ├── README │ ├── include │ ├── sqstdaux.h │ ├── sqstdblob.h │ ├── sqstdio.h │ ├── sqstdmath.h │ ├── sqstdstring.h │ ├── sqstdsystem.h │ └── squirrel.h │ ├── sqstdlib │ ├── Makefile │ ├── sqstdaux.cpp │ ├── sqstdblob.cpp │ ├── sqstdblobimpl.h │ ├── sqstdio.cpp │ ├── sqstdlib.dsp │ ├── sqstdmath.cpp │ ├── sqstdrex.cpp │ ├── sqstdstream.cpp │ ├── sqstdstream.h │ ├── sqstdstring.cpp │ └── sqstdsystem.cpp │ └── squirrel │ ├── Makefile │ ├── sqapi.cpp │ ├── sqarray.h │ ├── sqbaselib.cpp │ ├── sqclass.cpp │ ├── sqclass.h │ ├── sqclosure.h │ ├── sqcompiler.cpp │ ├── sqcompiler.h │ ├── sqdebug.cpp │ ├── sqfuncproto.h │ ├── sqfuncstate.cpp │ ├── sqfuncstate.h │ ├── sqlexer.cpp │ ├── sqlexer.h │ ├── sqmem.cpp │ ├── sqobject.cpp │ ├── sqobject.h │ ├── sqopcodes.h │ ├── sqpcheader.h │ ├── sqstate.cpp │ ├── sqstate.h │ ├── sqstring.h │ ├── sqtable.cpp │ ├── sqtable.h │ ├── squirrel.dsp │ ├── squserdata.h │ ├── squtils.h │ ├── sqvm.cpp │ └── sqvm.h ├── src ├── attract.exe.manifest ├── attract.ico ├── attract.rc ├── backward.cpp ├── backward.hpp ├── fe_base.cpp ├── fe_base.hpp ├── fe_blend.cpp ├── fe_blend.hpp ├── fe_cmdline.cpp ├── fe_config.cpp ├── fe_config.hpp ├── fe_file.cpp ├── fe_file.hpp ├── fe_image.cpp ├── fe_image.hpp ├── fe_info.cpp ├── fe_info.hpp ├── fe_input.cpp ├── fe_input.hpp ├── fe_listbox.cpp ├── fe_listbox.hpp ├── fe_net.cpp ├── fe_net.hpp ├── fe_overlay.cpp ├── fe_overlay.hpp ├── fe_present.cpp ├── fe_present.hpp ├── fe_presentable.cpp ├── fe_presentable.hpp ├── fe_romlist.cpp ├── fe_romlist.hpp ├── fe_settings.cpp ├── fe_settings.hpp ├── fe_shader.cpp ├── fe_shader.hpp ├── fe_sound.cpp ├── fe_sound.hpp ├── fe_text.cpp ├── fe_text.hpp ├── fe_util.cpp ├── fe_util.hpp ├── fe_util_android.cpp ├── fe_util_android.hpp ├── fe_util_osx.hpp ├── fe_util_osx.mm ├── fe_util_sq.cpp ├── fe_util_sq.hpp ├── fe_vm.cpp ├── fe_vm.hpp ├── fe_window.cpp ├── fe_window.hpp ├── image_loader.cpp ├── image_loader.hpp ├── main.cpp ├── media.cpp ├── media.hpp ├── path_cache.cpp ├── path_cache.hpp ├── scraper_base.cpp ├── scraper_base.hpp ├── scraper_gamesdb.cpp ├── scraper_general.cpp ├── scraper_net.cpp ├── scraper_xml.cpp ├── scraper_xml.hpp ├── sprite.cpp ├── sprite.hpp ├── stb_image.h ├── swf.cpp ├── swf.hpp ├── tp.cpp ├── tp.hpp ├── zip.cpp └── zip.hpp └── util ├── android ├── AndroidManifest.xml ├── Readme.md ├── custom_rules.xml └── jni │ └── Android.mk ├── icon-rebuild.sh ├── icon.png ├── lang.sh ├── linux ├── attract-mode.appdata.xml ├── attract-mode.desktop ├── attract-mode.png └── pacur │ └── PKGBUILD ├── osx ├── DS_Store ├── Info.plist ├── VolumeIcon.icns ├── attract.icns ├── background.png ├── bundlelibs.py ├── create-pkg.sh └── launch.sh ├── output-changelog-md.sh └── win └── create-pkg.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/.travis.yml -------------------------------------------------------------------------------- /Compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/Compile.md -------------------------------------------------------------------------------- /Layouts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/Layouts.md -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/License.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/Readme.md -------------------------------------------------------------------------------- /config/default-display.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/default-display.cfg -------------------------------------------------------------------------------- /config/default-emulator.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/default-emulator.cfg -------------------------------------------------------------------------------- /config/default-filter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/default-filter.cfg -------------------------------------------------------------------------------- /config/emulators/script/db.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/emulators/script/db.nut -------------------------------------------------------------------------------- /config/emulators/script/init.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/emulators/script/init.nut -------------------------------------------------------------------------------- /config/emulators/script/mame_init.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/emulators/script/mame_init.nut -------------------------------------------------------------------------------- /config/intro/intro.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/intro/intro.nut -------------------------------------------------------------------------------- /config/language/cn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/language/cn.msg -------------------------------------------------------------------------------- /config/language/de.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/language/de.msg -------------------------------------------------------------------------------- /config/language/en.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/language/en.msg -------------------------------------------------------------------------------- /config/language/es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/language/es.msg -------------------------------------------------------------------------------- /config/language/fr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/language/fr.msg -------------------------------------------------------------------------------- /config/language/it.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/language/it.msg -------------------------------------------------------------------------------- /config/language/jp.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/language/jp.msg -------------------------------------------------------------------------------- /config/language/kr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/language/kr.msg -------------------------------------------------------------------------------- /config/language/msg_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/language/msg_template.txt -------------------------------------------------------------------------------- /config/language/pt_br.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/language/pt_br.msg -------------------------------------------------------------------------------- /config/language/tw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/language/tw.msg -------------------------------------------------------------------------------- /config/layouts/Attrac-Man/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Attrac-Man/Readme.md -------------------------------------------------------------------------------- /config/layouts/Attrac-Man/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Attrac-Man/blank.png -------------------------------------------------------------------------------- /config/layouts/Attrac-Man/engine.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Attrac-Man/engine.nut -------------------------------------------------------------------------------- /config/layouts/Attrac-Man/field.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Attrac-Man/field.nut -------------------------------------------------------------------------------- /config/layouts/Attrac-Man/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Attrac-Man/field.png -------------------------------------------------------------------------------- /config/layouts/Attrac-Man/layout.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Attrac-Man/layout.nut -------------------------------------------------------------------------------- /config/layouts/Attrac-Man/layout.rol.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Attrac-Man/layout.rol.nut -------------------------------------------------------------------------------- /config/layouts/Attrac-Man/marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Attrac-Man/marquee.png -------------------------------------------------------------------------------- /config/layouts/Attrac-Man/resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Attrac-Man/resource.png -------------------------------------------------------------------------------- /config/layouts/Basic/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Basic/bg.png -------------------------------------------------------------------------------- /config/layouts/Basic/layout.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Basic/layout.nut -------------------------------------------------------------------------------- /config/layouts/Basic/marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Basic/marquee.png -------------------------------------------------------------------------------- /config/layouts/Cools/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Cools/bg.jpg -------------------------------------------------------------------------------- /config/layouts/Cools/bgmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Cools/bgmask.png -------------------------------------------------------------------------------- /config/layouts/Cools/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Cools/black.png -------------------------------------------------------------------------------- /config/layouts/Cools/layout.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Cools/layout.nut -------------------------------------------------------------------------------- /config/layouts/Cools/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Cools/mask.png -------------------------------------------------------------------------------- /config/layouts/Cools/titlemask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Cools/titlemask.png -------------------------------------------------------------------------------- /config/layouts/Filter Grid/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Filter Grid/frame.png -------------------------------------------------------------------------------- /config/layouts/Filter Grid/layout.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Filter Grid/layout.nut -------------------------------------------------------------------------------- /config/layouts/Grid/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Grid/frame.png -------------------------------------------------------------------------------- /config/layouts/Grid/layout.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Grid/layout.nut -------------------------------------------------------------------------------- /config/layouts/Orbit/bloom_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Orbit/bloom_shader.frag -------------------------------------------------------------------------------- /config/layouts/Orbit/flyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Orbit/flyer.png -------------------------------------------------------------------------------- /config/layouts/Orbit/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Orbit/frame.png -------------------------------------------------------------------------------- /config/layouts/Orbit/layout.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Orbit/layout.nut -------------------------------------------------------------------------------- /config/layouts/Orbit/marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Orbit/marquee.png -------------------------------------------------------------------------------- /config/layouts/Orbit/static.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Orbit/static.mp4 -------------------------------------------------------------------------------- /config/layouts/Orbit/tunnel-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Orbit/tunnel-readme.txt -------------------------------------------------------------------------------- /config/layouts/Orbit/tunnel.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Orbit/tunnel.mp4 -------------------------------------------------------------------------------- /config/layouts/Orbit/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Orbit/wheel.png -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-00-intro.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-00-intro.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-01-property-objects.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-01-property-objects.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-02-property-additional-properties.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-02-property-additional-properties.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-03-property-presets.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-03-property-presets.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-04-sprite-spritesheets.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-04-sprite-spritesheets.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-05-sprite-konami.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-05-sprite-konami.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-06-sprite-presets.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-06-sprite-presets.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-07-combine-animations.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-07-combine-animations.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-08-chaining-animations.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-08-chaining-animations.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-09-tween-easing.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-09-tween-easing.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-10-particle-config.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-10-particle-config.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-11-particle-presets.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-11-particle-presets.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-12-custom-functions.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-12-custom-functions.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-13-center-rotate-scaling.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-13-center-rotate-scaling.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout-14-bug-test.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout-14-bug-test.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/layout.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/layout.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/resources/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/resources/bg.png -------------------------------------------------------------------------------- /config/layouts/Sample Animate/resources/debug-720p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/resources/debug-720p.png -------------------------------------------------------------------------------- /config/layouts/Sample Animate/resources/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/resources/debug.png -------------------------------------------------------------------------------- /config/layouts/Sample Animate/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/resources/default.png -------------------------------------------------------------------------------- /config/layouts/Sample Animate/resources/joystick-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/resources/joystick-move.png -------------------------------------------------------------------------------- /config/layouts/Sample Animate/resources/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/resources/link.png -------------------------------------------------------------------------------- /config/layouts/Sample Animate/resources/logo-verion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/resources/logo-verion.png -------------------------------------------------------------------------------- /config/layouts/Sample Animate/resources/mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/resources/mario.png -------------------------------------------------------------------------------- /config/layouts/Sample Animate/resources/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/resources/pixel.png -------------------------------------------------------------------------------- /config/layouts/Sample Animate/resources/shared.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/resources/shared.nut -------------------------------------------------------------------------------- /config/layouts/Sample Animate/resources/tutorial_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/resources/tutorial_title.png -------------------------------------------------------------------------------- /config/layouts/Sample Animate/resources/tutorialbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Sample Animate/resources/tutorialbg.png -------------------------------------------------------------------------------- /config/layouts/Verticools/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Verticools/bg.jpg -------------------------------------------------------------------------------- /config/layouts/Verticools/layout.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/layouts/Verticools/layout.nut -------------------------------------------------------------------------------- /config/loader/attract_xml.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/loader/attract_xml.nut -------------------------------------------------------------------------------- /config/loader/hyperspin.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/loader/hyperspin.nut -------------------------------------------------------------------------------- /config/loader/loader.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/loader/loader.nut -------------------------------------------------------------------------------- /config/loader/mala.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/loader/mala.nut -------------------------------------------------------------------------------- /config/loader/mamewah.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/loader/mamewah.nut -------------------------------------------------------------------------------- /config/menu-art/wheel/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/menu-art/wheel/exit.png -------------------------------------------------------------------------------- /config/menu-art/wheel/mess-genesis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/menu-art/wheel/mess-genesis.png -------------------------------------------------------------------------------- /config/menu-art/wheel/mess-snes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/menu-art/wheel/mess-snes.png -------------------------------------------------------------------------------- /config/menu-art/wheel/nestopia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/menu-art/wheel/nestopia.png -------------------------------------------------------------------------------- /config/modules/animate.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate.nut -------------------------------------------------------------------------------- /config/modules/animate/particles.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles.nut -------------------------------------------------------------------------------- /config/modules/animate/particles/images/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/ball.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/bubbles1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/bubbles1.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/clouds-toon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/clouds-toon-1.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/clouds-toon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/clouds-toon-2.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/clouds-toon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/clouds-toon-3.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/clouds-toon2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/clouds-toon2-1.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/clouds-toon2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/clouds-toon2-2.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/clouds-toon2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/clouds-toon2-3.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/clouds-toon2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/clouds-toon2-4.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/clouds-toon2-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/clouds-toon2-5.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/debug.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/default.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/invader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/invader.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/invader2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/invader2.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/invader3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/invader3.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/particle-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/particle-text.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/snow.png -------------------------------------------------------------------------------- /config/modules/animate/particles/images/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/images/sparkle.png -------------------------------------------------------------------------------- /config/modules/animate/particles/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/pixel.png -------------------------------------------------------------------------------- /config/modules/animate/particles/presets.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/particles/presets.nut -------------------------------------------------------------------------------- /config/modules/animate/property.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/property.nut -------------------------------------------------------------------------------- /config/modules/animate/property/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/property/images/logo.png -------------------------------------------------------------------------------- /config/modules/animate/property/presets.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/property/presets.nut -------------------------------------------------------------------------------- /config/modules/animate/sprite.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/sprite.nut -------------------------------------------------------------------------------- /config/modules/animate/sprite/images/button-press-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/sprite/images/button-press-red.png -------------------------------------------------------------------------------- /config/modules/animate/sprite/images/button-press-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/sprite/images/button-press-white.png -------------------------------------------------------------------------------- /config/modules/animate/sprite/images/joystick-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/sprite/images/joystick-move.png -------------------------------------------------------------------------------- /config/modules/animate/sprite/images/pacland.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/sprite/images/pacland.gif -------------------------------------------------------------------------------- /config/modules/animate/sprite/presets.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animate/sprite/presets.nut -------------------------------------------------------------------------------- /config/modules/animlist.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/animlist.nut -------------------------------------------------------------------------------- /config/modules/conveyor.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/conveyor.nut -------------------------------------------------------------------------------- /config/modules/core/logger.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/core/logger.nut -------------------------------------------------------------------------------- /config/modules/core/module.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/core/module.nut -------------------------------------------------------------------------------- /config/modules/core/properties.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/core/properties.nut -------------------------------------------------------------------------------- /config/modules/extended/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/README.md -------------------------------------------------------------------------------- /config/modules/extended/animate.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animate.nut -------------------------------------------------------------------------------- /config/modules/extended/animations/arc/arc.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/arc/arc.nut -------------------------------------------------------------------------------- /config/modules/extended/animations/example/example.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/example/example.nut -------------------------------------------------------------------------------- /config/modules/extended/animations/example/invader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/example/invader.png -------------------------------------------------------------------------------- /config/modules/extended/animations/example/invader2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/example/invader2.png -------------------------------------------------------------------------------- /config/modules/extended/animations/example/invader3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/example/invader3.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/default.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/particles.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/particles.nut -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/pixel.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/bubbles1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/bubbles1.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/clouds-toon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/clouds-toon-1.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/clouds-toon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/clouds-toon-2.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/clouds-toon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/clouds-toon-3.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/clouds-toon2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/clouds-toon2-1.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/clouds-toon2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/clouds-toon2-2.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/clouds-toon2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/clouds-toon2-3.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/clouds-toon2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/clouds-toon2-4.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/clouds-toon2-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/clouds-toon2-5.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/default.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/invader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/invader.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/invader2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/invader2.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/invader3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/invader3.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/presets.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/presets.nut -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/snow.png -------------------------------------------------------------------------------- /config/modules/extended/animations/particles/presets/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/particles/presets/sparkle.png -------------------------------------------------------------------------------- /config/modules/extended/animations/property/property.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/property/property.nut -------------------------------------------------------------------------------- /config/modules/extended/animations/sets.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/sets.nut -------------------------------------------------------------------------------- /config/modules/extended/animations/translate/translate.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/animations/translate/translate.nut -------------------------------------------------------------------------------- /config/modules/extended/extended.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/extended.nut -------------------------------------------------------------------------------- /config/modules/extended/extensions/debugger/debugger.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/extensions/debugger/debugger.nut -------------------------------------------------------------------------------- /config/modules/extended/extensions/debugger/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/extensions/debugger/outline.png -------------------------------------------------------------------------------- /config/modules/extended/objects/orbit/bloom_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/objects/orbit/bloom_shader.frag -------------------------------------------------------------------------------- /config/modules/extended/objects/orbit/flyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/objects/orbit/flyer.png -------------------------------------------------------------------------------- /config/modules/extended/objects/orbit/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/objects/orbit/frame.png -------------------------------------------------------------------------------- /config/modules/extended/objects/orbit/marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/objects/orbit/marquee.png -------------------------------------------------------------------------------- /config/modules/extended/objects/orbit/orbit.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/objects/orbit/orbit.nut -------------------------------------------------------------------------------- /config/modules/extended/objects/orbit/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/objects/orbit/wheel.png -------------------------------------------------------------------------------- /config/modules/extended/objects/warp/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/objects/warp/dot.png -------------------------------------------------------------------------------- /config/modules/extended/objects/warp/warp.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/objects/warp/warp.nut -------------------------------------------------------------------------------- /config/modules/extended/objects/wheel/wheel.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/extended/objects/wheel/wheel.nut -------------------------------------------------------------------------------- /config/modules/fade.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/fade.nut -------------------------------------------------------------------------------- /config/modules/file-format.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/file-format.nut -------------------------------------------------------------------------------- /config/modules/file-layout.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/file-layout.nut -------------------------------------------------------------------------------- /config/modules/file-layout/attractmode.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/file-layout/attractmode.nut -------------------------------------------------------------------------------- /config/modules/file-layout/mamewah.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/file-layout/mamewah.nut -------------------------------------------------------------------------------- /config/modules/file-layout/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/file-layout/pixel.png -------------------------------------------------------------------------------- /config/modules/file.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/file.nut -------------------------------------------------------------------------------- /config/modules/objects/scrollingtext.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/objects/scrollingtext.nut -------------------------------------------------------------------------------- /config/modules/objects/scrollingtext/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/objects/scrollingtext/pixel.png -------------------------------------------------------------------------------- /config/modules/pan-and-scan.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/pan-and-scan.nut -------------------------------------------------------------------------------- /config/modules/preserve-art.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/preserve-art.nut -------------------------------------------------------------------------------- /config/modules/shuffle/module.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/shuffle/module.nut -------------------------------------------------------------------------------- /config/modules/shuffle/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/shuffle/readme.md -------------------------------------------------------------------------------- /config/modules/spritesheet.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/spritesheet.nut -------------------------------------------------------------------------------- /config/modules/submenu.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/modules/submenu.nut -------------------------------------------------------------------------------- /config/plugins/AudioMode.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/AudioMode.nut -------------------------------------------------------------------------------- /config/plugins/FPSMonitor/fps_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/FPSMonitor/fps_font.ttf -------------------------------------------------------------------------------- /config/plugins/FPSMonitor/fps_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/FPSMonitor/fps_graph.png -------------------------------------------------------------------------------- /config/plugins/FPSMonitor/plugin.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/FPSMonitor/plugin.nut -------------------------------------------------------------------------------- /config/plugins/History.xml/file_util.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/History.xml/file_util.nut -------------------------------------------------------------------------------- /config/plugins/History.xml/plugin.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/History.xml/plugin.nut -------------------------------------------------------------------------------- /config/plugins/KeyboardSearch.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/KeyboardSearch.nut -------------------------------------------------------------------------------- /config/plugins/KonamiCode.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/KonamiCode.nut -------------------------------------------------------------------------------- /config/plugins/LEDBlinky.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/LEDBlinky.nut -------------------------------------------------------------------------------- /config/plugins/MultiMon.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/MultiMon.nut -------------------------------------------------------------------------------- /config/plugins/ResFix.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/ResFix.nut -------------------------------------------------------------------------------- /config/plugins/RocketLauncher/file_util.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/RocketLauncher/file_util.nut -------------------------------------------------------------------------------- /config/plugins/RocketLauncher/plugin.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/RocketLauncher/plugin.nut -------------------------------------------------------------------------------- /config/plugins/RotationControl.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/RotationControl.nut -------------------------------------------------------------------------------- /config/plugins/SpecificDisplay.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/SpecificDisplay.nut -------------------------------------------------------------------------------- /config/plugins/UltraStik360.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/UltraStik360.nut -------------------------------------------------------------------------------- /config/plugins/UtilityMenu/any_command.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/UtilityMenu/any_command.nut -------------------------------------------------------------------------------- /config/plugins/UtilityMenu/plugin.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/UtilityMenu/plugin.nut -------------------------------------------------------------------------------- /config/plugins/eSpeak/plugin.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/plugins/eSpeak/plugin.nut -------------------------------------------------------------------------------- /config/romlists/mame/neogeo.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/romlists/mame/neogeo.tag -------------------------------------------------------------------------------- /config/romlists/mame/nofiller_2p.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/romlists/mame/nofiller_2p.tag -------------------------------------------------------------------------------- /config/romlists/mame/nofiller_4p.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/romlists/mame/nofiller_4p.tag -------------------------------------------------------------------------------- /config/romlists/mame/nofiller_chd.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/romlists/mame/nofiller_chd.tag -------------------------------------------------------------------------------- /config/romlists/mame/vsnes.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/romlists/mame/vsnes.tag -------------------------------------------------------------------------------- /config/screensaver/screensaver.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/screensaver/screensaver.nut -------------------------------------------------------------------------------- /config/shaders/default/add.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/shaders/default/add.frag -------------------------------------------------------------------------------- /config/shaders/default/alpha.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/shaders/default/alpha.frag -------------------------------------------------------------------------------- /config/shaders/default/multiply.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/shaders/default/multiply.frag -------------------------------------------------------------------------------- /config/shaders/default/overlay.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/shaders/default/overlay.frag -------------------------------------------------------------------------------- /config/shaders/default/premultiplied.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/shaders/default/premultiplied.frag -------------------------------------------------------------------------------- /config/shaders/default/screen.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/shaders/default/screen.frag -------------------------------------------------------------------------------- /config/shaders/default/subtract.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/config/shaders/default/subtract.frag -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/debian/docs -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/debian/install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /extlibs/audio/Audio/ALCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/audio/Audio/ALCheck.cpp -------------------------------------------------------------------------------- /extlibs/audio/Audio/AudioDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/audio/Audio/AudioDevice.cpp -------------------------------------------------------------------------------- /extlibs/audio/Audio/Listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/audio/Audio/Listener.cpp -------------------------------------------------------------------------------- /extlibs/audio/Audio/SoundSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/audio/Audio/SoundSource.cpp -------------------------------------------------------------------------------- /extlibs/audio/Audio/SoundStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/audio/Audio/SoundStream.cpp -------------------------------------------------------------------------------- /extlibs/audio/include/Audio/ALCheck.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/audio/include/Audio/ALCheck.hpp -------------------------------------------------------------------------------- /extlibs/audio/include/Audio/AudioDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/audio/include/Audio/AudioDevice.hpp -------------------------------------------------------------------------------- /extlibs/audio/include/Audio/Listener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/audio/include/Audio/Listener.hpp -------------------------------------------------------------------------------- /extlibs/audio/include/Audio/SoundSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/audio/include/Audio/SoundSource.hpp -------------------------------------------------------------------------------- /extlibs/audio/include/Audio/SoundStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/audio/include/Audio/SoundStream.hpp -------------------------------------------------------------------------------- /extlibs/expat/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/ascii.h -------------------------------------------------------------------------------- /extlibs/expat/asciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/asciitab.h -------------------------------------------------------------------------------- /extlibs/expat/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/expat.h -------------------------------------------------------------------------------- /extlibs/expat/expat_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/expat_external.h -------------------------------------------------------------------------------- /extlibs/expat/iasciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/iasciitab.h -------------------------------------------------------------------------------- /extlibs/expat/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/internal.h -------------------------------------------------------------------------------- /extlibs/expat/latin1tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/latin1tab.h -------------------------------------------------------------------------------- /extlibs/expat/nametab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/nametab.h -------------------------------------------------------------------------------- /extlibs/expat/siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/siphash.h -------------------------------------------------------------------------------- /extlibs/expat/utf8tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/utf8tab.h -------------------------------------------------------------------------------- /extlibs/expat/winconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/winconfig.h -------------------------------------------------------------------------------- /extlibs/expat/xmlparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/xmlparse.c -------------------------------------------------------------------------------- /extlibs/expat/xmlrole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/xmlrole.c -------------------------------------------------------------------------------- /extlibs/expat/xmlrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/xmlrole.h -------------------------------------------------------------------------------- /extlibs/expat/xmltok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/xmltok.c -------------------------------------------------------------------------------- /extlibs/expat/xmltok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/xmltok.h -------------------------------------------------------------------------------- /extlibs/expat/xmltok_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/xmltok_impl.c -------------------------------------------------------------------------------- /extlibs/expat/xmltok_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/xmltok_impl.h -------------------------------------------------------------------------------- /extlibs/expat/xmltok_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/expat/xmltok_ns.c -------------------------------------------------------------------------------- /extlibs/gameswf/base/GCBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/GCBench.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/Stackwalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/Stackwalker.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/Stackwalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/Stackwalker.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/component_hackery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/component_hackery.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/configvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/configvars.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/configvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/configvars.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/container.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/container.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/cschema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/cschema.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/demo.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/demo.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/dlmalloc.c -------------------------------------------------------------------------------- /extlibs/gameswf/base/dlmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/dlmalloc.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/ear_clip_triangulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/ear_clip_triangulate.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/ear_clip_triangulate_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/ear_clip_triangulate_float.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/ear_clip_triangulate_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/ear_clip_triangulate_impl.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/ear_clip_triangulate_sint16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/ear_clip_triangulate_sint16.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/file_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/file_util.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/file_util.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/grid_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/grid_index.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/image.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/image.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/image_filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/image_filters.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/jpeg.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/jpeg.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/logger.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/logger.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/membuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/membuf.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/membuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/membuf.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/ogl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/ogl.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/ogl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/ogl.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/png_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/png_helper.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/png_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/png_helper.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/postscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/postscript.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/postscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/postscript.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/smart_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/smart_ptr.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/test_ogl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/test_ogl.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/triangulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/triangulate.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/triangulate_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/triangulate_float.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/triangulate_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/triangulate_impl.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/triangulate_sint32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/triangulate_sint32.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_config.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_file.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_file.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_file_SDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_file_SDL.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_gc.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_gc_singlethreaded_marksweep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_gc_singlethreaded_marksweep.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_gc_singlethreaded_marksweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_gc_singlethreaded_marksweep.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_gc_singlethreaded_refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_gc_singlethreaded_refcount.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_gc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_gc_test.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_gc_test_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_gc_test_impl.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_loadlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_loadlib.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_loadlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_loadlib.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_math.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_memdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_memdebug.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_opengl_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_opengl_includes.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_queue.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_random.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_random.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_swap.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_timer.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_timer.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_types.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/tu_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/tu_types.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/utf8.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/utf8.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/utility.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/utility.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/vert_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/vert_types.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/weak_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/weak_ptr.h -------------------------------------------------------------------------------- /extlibs/gameswf/base/zlib_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/zlib_adapter.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/base/zlib_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/base/zlib_adapter.h -------------------------------------------------------------------------------- /extlibs/gameswf/compatibility_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/compatibility_include.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/NOTES.txt -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/TODO -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_abc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_abc.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_abc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_abc.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_action.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_action.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_array.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_array.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_boolean.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_boolean.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_broadcaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_broadcaster.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_broadcaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_broadcaster.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_class.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_class.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_color.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_color.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_color_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_color_transform.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_color_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_color_transform.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_date.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_date.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_event.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_event.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_flash.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_flash.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_geom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_geom.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_geom.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_global.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_global.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_key.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_key.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_loadvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_loadvars.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_loadvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_loadvars.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_math.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_math.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_matrix.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_matrix.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_mcloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_mcloader.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_mcloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_mcloader.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_mouse.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_mouse.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_mouse_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_mouse_event.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_mouse_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_mouse_event.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_netconnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_netconnection.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_netconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_netconnection.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_netstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_netstream.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_netstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_netstream.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_number.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_number.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_point.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_point.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_selection.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_selection.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_sharedobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_sharedobject.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_sharedobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_sharedobject.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_sound.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_sound.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_string.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_string.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_textformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_textformat.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_textformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_textformat.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_transform.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_transform.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_xml.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_xml.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_xmlsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_xmlsocket.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_classes/as_xmlsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_classes/as_xmlsocket.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_sprite.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_as_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_as_sprite.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_avm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_avm2.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_avm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_avm2.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_avm2_jit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_avm2_jit.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_batch_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_batch_run.py -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_batch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_batch_test.py -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_button.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_button.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_canvas.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_canvas.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_character.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_character.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_disasm.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_disasm.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_dlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_dlist.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_dlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_dlist.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_environment.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_environment.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_filters.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_filters.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_font.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_font.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_fontlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_fontlib.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_fontlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_fontlib.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_freetype.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_freetype.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_function.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_function.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_impl.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_impl.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_jit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_jit.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_jit.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_jit_opcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_jit_opcode.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_jit_opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_jit_opcode.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_listener.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_listener.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_log.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_log.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_morph2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_morph2.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_morph2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_morph2.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_movie_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_movie_def.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_movie_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_movie_def.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_mutex.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_mutex.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_object.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_object.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_parser.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_player.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_player.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_processor.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_render.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_render.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_render_handler_d3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_render_handler_d3d.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_render_handler_ogl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_render_handler_ogl.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_render_handler_ogles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_render_handler_ogles.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_render_handler_xbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_render_handler_xbox.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_root.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_root.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_shape.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_shape.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_sound.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_sound.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_sound_handler_openal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_sound_handler_openal.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_sound_handler_openal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_sound_handler_openal.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_sound_handler_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_sound_handler_sdl.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_sound_handler_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_sound_handler_sdl.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_sprite.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_sprite.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_sprite_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_sprite_def.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_sprite_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_sprite_def.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_stream.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_stream.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_styles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_styles.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_styles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_styles.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_tesselate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_tesselate.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_tesselate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_tesselate.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_test_ogl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_test_ogl.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_text.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_text.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_tools.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_types.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_types.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_value.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_value.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_video_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_video_impl.cpp -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/gameswf_video_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/gameswf_video_impl.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/platforms/gameswf_jit_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/platforms/gameswf_jit_x86.h -------------------------------------------------------------------------------- /extlibs/gameswf/gameswf/platforms/gameswf_jit_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/gameswf/gameswf/platforms/gameswf_jit_x86.hpp -------------------------------------------------------------------------------- /extlibs/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/miniz/miniz.c -------------------------------------------------------------------------------- /extlibs/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/miniz/miniz.h -------------------------------------------------------------------------------- /extlibs/nowide/console_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/console_buffer.cpp -------------------------------------------------------------------------------- /extlibs/nowide/console_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/console_buffer.hpp -------------------------------------------------------------------------------- /extlibs/nowide/cstdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/cstdio.cpp -------------------------------------------------------------------------------- /extlibs/nowide/cstdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/cstdlib.cpp -------------------------------------------------------------------------------- /extlibs/nowide/filebuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/filebuf.cpp -------------------------------------------------------------------------------- /extlibs/nowide/iostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/iostream.cpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/args.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/cenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/cenv.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/config.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/convert.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/cstdio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/cstdio.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/cstdlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/cstdlib.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/detail/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/detail/convert.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/detail/is_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/detail/is_path.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/detail/is_string_container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/detail/is_string_container.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/detail/utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/detail/utf.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/encoding_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/encoding_errors.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/encoding_utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/encoding_utf.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/filebuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/filebuf.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/filesystem.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/fstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/fstream.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/iostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/iostream.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/replacement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/replacement.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/scoped_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/scoped_ptr.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/stackstring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/stackstring.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/stat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/stat.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/system.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/utf.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/utf/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/utf/convert.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/utf/utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/utf/utf.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/utf8_codecvt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/utf8_codecvt.hpp -------------------------------------------------------------------------------- /extlibs/nowide/nowide/windows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/nowide/windows.hpp -------------------------------------------------------------------------------- /extlibs/nowide/stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nowide/stat.cpp -------------------------------------------------------------------------------- /extlibs/nvapi/nvapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nvapi/nvapi.hpp -------------------------------------------------------------------------------- /extlibs/nvapi/nvapi_definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/nvapi/nvapi_definitions.hpp -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/allocators.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/cursorstreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/cursorstreamwrapper.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/document.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/encodings.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/error/en.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/error/error.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/fwd.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/memorystream.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/pointer.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/reader.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/schema.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/stream.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /extlibs/rapidjson/include/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/include/rapidjson/writer.h -------------------------------------------------------------------------------- /extlibs/rapidjson/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/rapidjson/license.txt -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratAllocator.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratArray.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratClass.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratClassType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratClassType.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratConst.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratFunction.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratGlobalMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratGlobalMethods.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratMemberMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratMemberMethods.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratObject.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratOverloadMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratOverloadMethods.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratScript.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratTable.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratTypes.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratUtil.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratVM.h -------------------------------------------------------------------------------- /extlibs/sqrat/include/sqrat/sqratext_Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/sqrat/include/sqrat/sqratext_Ref.h -------------------------------------------------------------------------------- /extlibs/squirrel/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/COPYRIGHT -------------------------------------------------------------------------------- /extlibs/squirrel/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/HISTORY -------------------------------------------------------------------------------- /extlibs/squirrel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/README -------------------------------------------------------------------------------- /extlibs/squirrel/include/sqstdaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/include/sqstdaux.h -------------------------------------------------------------------------------- /extlibs/squirrel/include/sqstdblob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/include/sqstdblob.h -------------------------------------------------------------------------------- /extlibs/squirrel/include/sqstdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/include/sqstdio.h -------------------------------------------------------------------------------- /extlibs/squirrel/include/sqstdmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/include/sqstdmath.h -------------------------------------------------------------------------------- /extlibs/squirrel/include/sqstdstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/include/sqstdstring.h -------------------------------------------------------------------------------- /extlibs/squirrel/include/sqstdsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/include/sqstdsystem.h -------------------------------------------------------------------------------- /extlibs/squirrel/include/squirrel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/include/squirrel.h -------------------------------------------------------------------------------- /extlibs/squirrel/sqstdlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/sqstdlib/Makefile -------------------------------------------------------------------------------- /extlibs/squirrel/sqstdlib/sqstdaux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/sqstdlib/sqstdaux.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/sqstdlib/sqstdblob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/sqstdlib/sqstdblob.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/sqstdlib/sqstdblobimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/sqstdlib/sqstdblobimpl.h -------------------------------------------------------------------------------- /extlibs/squirrel/sqstdlib/sqstdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/sqstdlib/sqstdio.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/sqstdlib/sqstdlib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/sqstdlib/sqstdlib.dsp -------------------------------------------------------------------------------- /extlibs/squirrel/sqstdlib/sqstdmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/sqstdlib/sqstdmath.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/sqstdlib/sqstdrex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/sqstdlib/sqstdrex.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/sqstdlib/sqstdstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/sqstdlib/sqstdstream.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/sqstdlib/sqstdstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/sqstdlib/sqstdstream.h -------------------------------------------------------------------------------- /extlibs/squirrel/sqstdlib/sqstdstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/sqstdlib/sqstdstring.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/sqstdlib/sqstdsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/sqstdlib/sqstdsystem.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/Makefile -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqapi.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqarray.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqbaselib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqbaselib.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqclass.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqclass.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqclosure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqclosure.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqcompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqcompiler.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqcompiler.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqdebug.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqfuncproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqfuncproto.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqfuncstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqfuncstate.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqfuncstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqfuncstate.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqlexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqlexer.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqlexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqlexer.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqmem.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqobject.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqobject.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqopcodes.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqpcheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqpcheader.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqstate.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqstate.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqstring.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqtable.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqtable.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/squirrel.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/squirrel.dsp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/squserdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/squserdata.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/squtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/squtils.h -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqvm.cpp -------------------------------------------------------------------------------- /extlibs/squirrel/squirrel/sqvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/extlibs/squirrel/squirrel/sqvm.h -------------------------------------------------------------------------------- /src/attract.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/attract.exe.manifest -------------------------------------------------------------------------------- /src/attract.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/attract.ico -------------------------------------------------------------------------------- /src/attract.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/attract.rc -------------------------------------------------------------------------------- /src/backward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/backward.cpp -------------------------------------------------------------------------------- /src/backward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/backward.hpp -------------------------------------------------------------------------------- /src/fe_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_base.cpp -------------------------------------------------------------------------------- /src/fe_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_base.hpp -------------------------------------------------------------------------------- /src/fe_blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_blend.cpp -------------------------------------------------------------------------------- /src/fe_blend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_blend.hpp -------------------------------------------------------------------------------- /src/fe_cmdline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_cmdline.cpp -------------------------------------------------------------------------------- /src/fe_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_config.cpp -------------------------------------------------------------------------------- /src/fe_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_config.hpp -------------------------------------------------------------------------------- /src/fe_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_file.cpp -------------------------------------------------------------------------------- /src/fe_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_file.hpp -------------------------------------------------------------------------------- /src/fe_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_image.cpp -------------------------------------------------------------------------------- /src/fe_image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_image.hpp -------------------------------------------------------------------------------- /src/fe_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_info.cpp -------------------------------------------------------------------------------- /src/fe_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_info.hpp -------------------------------------------------------------------------------- /src/fe_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_input.cpp -------------------------------------------------------------------------------- /src/fe_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_input.hpp -------------------------------------------------------------------------------- /src/fe_listbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_listbox.cpp -------------------------------------------------------------------------------- /src/fe_listbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_listbox.hpp -------------------------------------------------------------------------------- /src/fe_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_net.cpp -------------------------------------------------------------------------------- /src/fe_net.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_net.hpp -------------------------------------------------------------------------------- /src/fe_overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_overlay.cpp -------------------------------------------------------------------------------- /src/fe_overlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_overlay.hpp -------------------------------------------------------------------------------- /src/fe_present.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_present.cpp -------------------------------------------------------------------------------- /src/fe_present.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_present.hpp -------------------------------------------------------------------------------- /src/fe_presentable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_presentable.cpp -------------------------------------------------------------------------------- /src/fe_presentable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_presentable.hpp -------------------------------------------------------------------------------- /src/fe_romlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_romlist.cpp -------------------------------------------------------------------------------- /src/fe_romlist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_romlist.hpp -------------------------------------------------------------------------------- /src/fe_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_settings.cpp -------------------------------------------------------------------------------- /src/fe_settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_settings.hpp -------------------------------------------------------------------------------- /src/fe_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_shader.cpp -------------------------------------------------------------------------------- /src/fe_shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_shader.hpp -------------------------------------------------------------------------------- /src/fe_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_sound.cpp -------------------------------------------------------------------------------- /src/fe_sound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_sound.hpp -------------------------------------------------------------------------------- /src/fe_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_text.cpp -------------------------------------------------------------------------------- /src/fe_text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_text.hpp -------------------------------------------------------------------------------- /src/fe_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_util.cpp -------------------------------------------------------------------------------- /src/fe_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_util.hpp -------------------------------------------------------------------------------- /src/fe_util_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_util_android.cpp -------------------------------------------------------------------------------- /src/fe_util_android.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_util_android.hpp -------------------------------------------------------------------------------- /src/fe_util_osx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_util_osx.hpp -------------------------------------------------------------------------------- /src/fe_util_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_util_osx.mm -------------------------------------------------------------------------------- /src/fe_util_sq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_util_sq.cpp -------------------------------------------------------------------------------- /src/fe_util_sq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_util_sq.hpp -------------------------------------------------------------------------------- /src/fe_vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_vm.cpp -------------------------------------------------------------------------------- /src/fe_vm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_vm.hpp -------------------------------------------------------------------------------- /src/fe_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_window.cpp -------------------------------------------------------------------------------- /src/fe_window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/fe_window.hpp -------------------------------------------------------------------------------- /src/image_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/image_loader.cpp -------------------------------------------------------------------------------- /src/image_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/image_loader.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/media.cpp -------------------------------------------------------------------------------- /src/media.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/media.hpp -------------------------------------------------------------------------------- /src/path_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/path_cache.cpp -------------------------------------------------------------------------------- /src/path_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/path_cache.hpp -------------------------------------------------------------------------------- /src/scraper_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/scraper_base.cpp -------------------------------------------------------------------------------- /src/scraper_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/scraper_base.hpp -------------------------------------------------------------------------------- /src/scraper_gamesdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/scraper_gamesdb.cpp -------------------------------------------------------------------------------- /src/scraper_general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/scraper_general.cpp -------------------------------------------------------------------------------- /src/scraper_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/scraper_net.cpp -------------------------------------------------------------------------------- /src/scraper_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/scraper_xml.cpp -------------------------------------------------------------------------------- /src/scraper_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/scraper_xml.hpp -------------------------------------------------------------------------------- /src/sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/sprite.cpp -------------------------------------------------------------------------------- /src/sprite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/sprite.hpp -------------------------------------------------------------------------------- /src/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/stb_image.h -------------------------------------------------------------------------------- /src/swf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/swf.cpp -------------------------------------------------------------------------------- /src/swf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/swf.hpp -------------------------------------------------------------------------------- /src/tp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/tp.cpp -------------------------------------------------------------------------------- /src/tp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/tp.hpp -------------------------------------------------------------------------------- /src/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/zip.cpp -------------------------------------------------------------------------------- /src/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/src/zip.hpp -------------------------------------------------------------------------------- /util/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/android/AndroidManifest.xml -------------------------------------------------------------------------------- /util/android/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/android/Readme.md -------------------------------------------------------------------------------- /util/android/custom_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/android/custom_rules.xml -------------------------------------------------------------------------------- /util/android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/android/jni/Android.mk -------------------------------------------------------------------------------- /util/icon-rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/icon-rebuild.sh -------------------------------------------------------------------------------- /util/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/icon.png -------------------------------------------------------------------------------- /util/lang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/lang.sh -------------------------------------------------------------------------------- /util/linux/attract-mode.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/linux/attract-mode.appdata.xml -------------------------------------------------------------------------------- /util/linux/attract-mode.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/linux/attract-mode.desktop -------------------------------------------------------------------------------- /util/linux/attract-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/linux/attract-mode.png -------------------------------------------------------------------------------- /util/linux/pacur/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/linux/pacur/PKGBUILD -------------------------------------------------------------------------------- /util/osx/DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/osx/DS_Store -------------------------------------------------------------------------------- /util/osx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/osx/Info.plist -------------------------------------------------------------------------------- /util/osx/VolumeIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/osx/VolumeIcon.icns -------------------------------------------------------------------------------- /util/osx/attract.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/osx/attract.icns -------------------------------------------------------------------------------- /util/osx/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/osx/background.png -------------------------------------------------------------------------------- /util/osx/bundlelibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/osx/bundlelibs.py -------------------------------------------------------------------------------- /util/osx/create-pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/osx/create-pkg.sh -------------------------------------------------------------------------------- /util/osx/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "${0%/*}" 3 | ./attract 4 | -------------------------------------------------------------------------------- /util/output-changelog-md.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/output-changelog-md.sh -------------------------------------------------------------------------------- /util/win/create-pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickelson/attract/HEAD/util/win/create-pkg.sh --------------------------------------------------------------------------------