├── .github ├── FUNDING.yml └── workflows │ ├── deploy.yml │ ├── preview-cleanup.yml │ └── preview.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── admin ├── Admin.tsx ├── client.tsx ├── index.html ├── rpc │ └── admin.ts └── state.ts ├── api ├── admin │ └── actions.ts ├── auth │ ├── actions.ts │ └── types.ts ├── chat │ ├── actions.ts │ ├── bus.ts │ ├── routes.ts │ └── types.ts ├── core │ ├── app.ts │ ├── constants.ts │ ├── create-bus.ts │ ├── fetch-json.ts │ ├── match.ts │ ├── middleware.ts │ ├── router.ts │ ├── send-email.ts │ ├── server.ts │ └── sessions.ts ├── db.ts ├── deno.json ├── deno.lock ├── env.ts ├── import-map.production.json ├── models.ts ├── oauth │ ├── actions.ts │ └── routes │ │ ├── common.ts │ │ └── github.ts ├── profiles │ ├── actions.ts │ └── types.ts ├── rpc │ └── routes.ts ├── sounds │ └── actions.ts ├── test-watch.ts ├── test │ ├── sanity.test.ts │ └── temp.ts └── ws │ └── routes.ts ├── as ├── assembly │ ├── alloc.ts │ ├── ambient.d.ts │ ├── common │ │ └── env.ts │ ├── dsp │ │ ├── constants.ts │ │ ├── core │ │ │ ├── antialias-wavetable.ts │ │ │ ├── clock.ts │ │ │ ├── constants-internal.ts │ │ │ ├── constants.ts │ │ │ ├── engine.ts │ │ │ ├── fft.ts │ │ │ ├── wave.ts │ │ │ └── wavetable.ts │ │ ├── gen │ │ │ ├── adsr.ts │ │ │ ├── aosc.ts │ │ │ ├── atan.ts │ │ │ ├── bap.ts │ │ │ ├── bbp.ts │ │ │ ├── bhp.ts │ │ │ ├── bhs.ts │ │ │ ├── biquad.ts │ │ │ ├── blp.ts │ │ │ ├── bls.ts │ │ │ ├── bno.ts │ │ │ ├── bpk.ts │ │ │ ├── clamp.ts │ │ │ ├── clip.ts │ │ │ ├── comp.ts │ │ │ ├── daverb.ts │ │ │ ├── dcc.ts │ │ │ ├── dclip.ts │ │ │ ├── dclipexp.ts │ │ │ ├── dcliplin.ts │ │ │ ├── delay.ts │ │ │ ├── diode.ts │ │ │ ├── exp.ts │ │ │ ├── freesound.ts │ │ │ ├── gen.ts │ │ │ ├── gendy.ts │ │ │ ├── grain.ts │ │ │ ├── inc.ts │ │ │ ├── lp.ts │ │ │ ├── mhp.ts │ │ │ ├── mlp.ts │ │ │ ├── moog.ts │ │ │ ├── noi.ts │ │ │ ├── nrate.ts │ │ │ ├── osc.ts │ │ │ ├── ramp.ts │ │ │ ├── rate.ts │ │ │ ├── sap.ts │ │ │ ├── saw.ts │ │ │ ├── say.ts │ │ │ ├── sbp.ts │ │ │ ├── shp.ts │ │ │ ├── sin.ts │ │ │ ├── slp.ts │ │ │ ├── smp.ts │ │ │ ├── sno.ts │ │ │ ├── spk.ts │ │ │ ├── sqr.ts │ │ │ ├── svf.ts │ │ │ ├── tanh.ts │ │ │ ├── tanha.ts │ │ │ ├── tap.ts │ │ │ ├── tri.ts │ │ │ └── zero.ts │ │ ├── graph │ │ │ ├── copy.ts │ │ │ ├── dc-bias-old.ts │ │ │ ├── dc-bias.ts │ │ │ ├── fade.ts │ │ │ ├── fill.ts │ │ │ ├── join.ts │ │ │ ├── math.ts │ │ │ └── rms.ts │ │ ├── index.ts │ │ ├── shared.ts │ │ └── vm │ │ │ ├── bin-op.ts │ │ │ ├── dsp-shared.ts │ │ │ ├── dsp.ts │ │ │ ├── player.ts │ │ │ └── sound.ts │ ├── gfx │ │ ├── draw.ts │ │ ├── env.ts │ │ ├── index.ts │ │ ├── sketch-shared.ts │ │ ├── sketch.ts │ │ └── util.ts │ ├── pkg │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── math.ts │ │ ├── player.ts │ │ ├── rand.ts │ │ └── shared.ts │ ├── rms.ts │ ├── types.ts │ └── util.ts └── tsconfig.json ├── asconfig-dsp-nort.json ├── asconfig-dsp.json ├── asconfig-gfx.json ├── asconfig-pkg-nort.json ├── asconfig-pkg.json ├── asconfig-rms.json ├── bunfig.toml ├── codecov.yml ├── docker-compose.yaml ├── generated ├── assembly │ ├── dsp-factory.ts │ ├── dsp-offsets.ts │ ├── dsp-op.ts │ ├── dsp-runner.ts │ └── tsconfig.json └── typescript │ ├── dsp-gens.ts │ └── dsp-vm.ts ├── index.html ├── kysely.config.ts ├── lib ├── caching-router.ts ├── cn.ts ├── happydom.ts ├── icon.ts ├── lorem.ts ├── rpc.ts ├── watcher.ts └── ws.ts ├── migrations ├── 1727778500969_user-table.ts ├── 1728040211862_chat-table.ts ├── 1729663196543_profiles-table.ts ├── 1729687226871_sounds-table.ts ├── 1729758260210_favorites-table.ts └── 1729771213713_sounds-remixOf-column.ts ├── package.json ├── postcss.config.js ├── public ├── apple-touch-icon-180x180.png ├── as-interop.js ├── favicon.ico ├── favicon.svg ├── maskable-icon-512x512.png ├── pwa-192x192.png ├── pwa-512x512.png └── pwa-64x64.png ├── pwa-assets.config.ts ├── scripts ├── generate-dsp-vm.ts ├── update-dsp-factory.ts ├── update-gens-offsets.ts └── util.ts ├── src ├── ambient.d.ts ├── as │ ├── dsp │ │ ├── build.ts │ │ ├── constants.ts │ │ ├── dsp.ts │ │ ├── index.ts │ │ ├── node.ts │ │ ├── notes-shared.ts │ │ ├── params-shared.ts │ │ ├── pre-post.ts │ │ ├── preview-service.ts │ │ ├── preview-worker.ts │ │ ├── rms.ts │ │ ├── shared.ts │ │ ├── util.ts │ │ ├── value.ts │ │ ├── wasm.ts │ │ └── worklet.ts │ ├── gfx │ │ ├── anim.ts │ │ ├── gfx.ts │ │ ├── glsl.ts │ │ ├── index.ts │ │ ├── mesh-info.ts │ │ ├── meshes.ts │ │ ├── shapes.ts │ │ ├── sketch-info.ts │ │ ├── sketch.ts │ │ ├── types.ts │ │ ├── wasm-matrix.ts │ │ └── wasm.ts │ ├── init-wasm.ts │ └── pkg │ │ ├── player.ts │ │ ├── service.ts │ │ ├── shared.ts │ │ ├── wasm.ts │ │ ├── worker.ts │ │ └── worklet.ts ├── client.tsx ├── comp │ ├── AnimMode.tsx │ ├── AuthModal.tsx │ ├── DspEditor.tsx │ ├── DspEditorUi.tsx │ ├── Header.tsx │ ├── Help.tsx │ ├── HelpModal.tsx │ ├── Login.tsx │ ├── LoginOrRegister.tsx │ ├── OAuthLogin.tsx │ ├── Register.tsx │ ├── ResetPassword.tsx │ ├── Toast.tsx │ └── VerifyEmail.tsx ├── constants.ts ├── env.ts ├── lang │ ├── index.ts │ ├── interpreter.test.ts │ ├── interpreter.ts │ ├── tokenize.test.ts │ ├── tokenize.ts │ └── util.ts ├── pages │ ├── About.tsx │ ├── App copy.tsx │ ├── App.tsx │ ├── AssemblyScript.tsx │ ├── CanvasDemo.tsx │ ├── Chat │ │ ├── Channels.tsx │ │ ├── Chat.tsx │ │ ├── Messages.tsx │ │ ├── Users.tsx │ │ ├── VideoCall.tsx │ │ └── util.ts │ ├── CreateProfile.tsx │ ├── CreateSound.tsx │ ├── DspControls.tsx │ ├── EditorDemo.tsx │ ├── Home.tsx │ ├── Logout.tsx │ ├── OAuthRegister.tsx │ ├── Profile.tsx │ ├── QrCode.tsx │ ├── Settings.tsx │ ├── Showcase.tsx │ ├── UiShowcase.tsx │ ├── WebGLDemo.tsx │ ├── WebSockets.tsx │ └── WorkerWorklet │ │ ├── WorkerWorkletDemo.tsx │ │ ├── basic-processor.ts │ │ ├── constants.ts │ │ ├── free-queue.ts │ │ └── worker.ts ├── pwa.ts ├── rpc │ ├── auth.ts │ ├── chat.ts │ ├── oauth.ts │ ├── profiles.ts │ └── sounds.ts ├── screen.ts ├── service-worker │ └── sw.ts ├── state.ts ├── test │ └── e2e.test.tsx-fixme ├── theme.ts ├── ui │ ├── Button.tsx │ ├── Canvas.tsx │ ├── DropDown.tsx │ ├── Editor.tsx │ ├── Fieldset.tsx │ ├── Heading.tsx │ ├── Input.tsx │ ├── Label.tsx │ ├── Layout.tsx │ ├── Link.tsx │ ├── editor │ │ ├── buffer.test.ts │ │ ├── buffer.ts │ │ ├── caret.ts │ │ ├── constants.ts │ │ ├── dims.ts │ │ ├── draw.ts │ │ ├── history.ts │ │ ├── index.ts │ │ ├── input.ts │ │ ├── kbd.tsx │ │ ├── misc.ts │ │ ├── mouse.ts │ │ ├── pane.ts │ │ ├── selection.ts │ │ ├── util │ │ │ ├── begin-of-line.ts │ │ │ ├── escape-regexp.ts │ │ │ ├── find-matching-brackets.ts │ │ │ ├── floats.ts │ │ │ ├── geometry.ts │ │ │ ├── index.ts │ │ │ ├── oklch.ts │ │ │ ├── parse-words.ts │ │ │ ├── regexp.ts │ │ │ ├── rgb.ts │ │ │ ├── types.ts │ │ │ └── waveform.ts │ │ ├── view.tsx │ │ ├── widget.ts │ │ └── widgets │ │ │ ├── error-sub.ts │ │ │ ├── hover-mark.ts │ │ │ ├── index.ts │ │ │ ├── list-mark.ts │ │ │ ├── rms-deco.ts │ │ │ ├── wave-canvas-deco.ts │ │ │ ├── wave-gl-deco.ts │ │ │ └── wave-svg-deco.tsx │ └── index.ts └── util │ ├── copy-ring-into.ts │ ├── mod-wrap.ts │ ├── parse-form.test.tsx │ ├── parse-form.ts │ └── stabilizer.ts ├── style.css ├── tailwind.config.js ├── tsconfig.json ├── vendor ├── as-transform-unroll.js ├── as-transform-update-dsp-gens.js ├── util.js ├── vite-plugin-assemblyscript.ts ├── vite-plugin-bundle-url.ts ├── vite-plugin-cors-coop-coep.ts ├── vite-plugin-hex-loader.ts ├── vite-plugin-open-in-editor.ts ├── vite-plugin-print-address.ts └── vite-plugin-using.ts └── vite.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/preview-cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/.github/workflows/preview-cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/.github/workflows/preview.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/README.md -------------------------------------------------------------------------------- /admin/Admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/admin/Admin.tsx -------------------------------------------------------------------------------- /admin/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/admin/client.tsx -------------------------------------------------------------------------------- /admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/admin/index.html -------------------------------------------------------------------------------- /admin/rpc/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/admin/rpc/admin.ts -------------------------------------------------------------------------------- /admin/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/admin/state.ts -------------------------------------------------------------------------------- /api/admin/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/admin/actions.ts -------------------------------------------------------------------------------- /api/auth/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/auth/actions.ts -------------------------------------------------------------------------------- /api/auth/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/auth/types.ts -------------------------------------------------------------------------------- /api/chat/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/chat/actions.ts -------------------------------------------------------------------------------- /api/chat/bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/chat/bus.ts -------------------------------------------------------------------------------- /api/chat/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/chat/routes.ts -------------------------------------------------------------------------------- /api/chat/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/chat/types.ts -------------------------------------------------------------------------------- /api/core/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/core/app.ts -------------------------------------------------------------------------------- /api/core/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/core/constants.ts -------------------------------------------------------------------------------- /api/core/create-bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/core/create-bus.ts -------------------------------------------------------------------------------- /api/core/fetch-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/core/fetch-json.ts -------------------------------------------------------------------------------- /api/core/match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/core/match.ts -------------------------------------------------------------------------------- /api/core/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/core/middleware.ts -------------------------------------------------------------------------------- /api/core/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/core/router.ts -------------------------------------------------------------------------------- /api/core/send-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/core/send-email.ts -------------------------------------------------------------------------------- /api/core/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/core/server.ts -------------------------------------------------------------------------------- /api/core/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/core/sessions.ts -------------------------------------------------------------------------------- /api/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/db.ts -------------------------------------------------------------------------------- /api/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/deno.json -------------------------------------------------------------------------------- /api/deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/deno.lock -------------------------------------------------------------------------------- /api/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/env.ts -------------------------------------------------------------------------------- /api/import-map.production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/import-map.production.json -------------------------------------------------------------------------------- /api/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/models.ts -------------------------------------------------------------------------------- /api/oauth/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/oauth/actions.ts -------------------------------------------------------------------------------- /api/oauth/routes/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/oauth/routes/common.ts -------------------------------------------------------------------------------- /api/oauth/routes/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/oauth/routes/github.ts -------------------------------------------------------------------------------- /api/profiles/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/profiles/actions.ts -------------------------------------------------------------------------------- /api/profiles/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/profiles/types.ts -------------------------------------------------------------------------------- /api/rpc/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/rpc/routes.ts -------------------------------------------------------------------------------- /api/sounds/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/sounds/actions.ts -------------------------------------------------------------------------------- /api/test-watch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/test-watch.ts -------------------------------------------------------------------------------- /api/test/sanity.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/test/sanity.test.ts -------------------------------------------------------------------------------- /api/test/temp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/test/temp.ts -------------------------------------------------------------------------------- /api/ws/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/api/ws/routes.ts -------------------------------------------------------------------------------- /as/assembly/alloc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/alloc.ts -------------------------------------------------------------------------------- /as/assembly/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/ambient.d.ts -------------------------------------------------------------------------------- /as/assembly/common/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/common/env.ts -------------------------------------------------------------------------------- /as/assembly/dsp/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/constants.ts -------------------------------------------------------------------------------- /as/assembly/dsp/core/antialias-wavetable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/core/antialias-wavetable.ts -------------------------------------------------------------------------------- /as/assembly/dsp/core/clock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/core/clock.ts -------------------------------------------------------------------------------- /as/assembly/dsp/core/constants-internal.ts: -------------------------------------------------------------------------------- 1 | // @ts-ignore 2 | @inline 3 | export const k2PI: f32 = 6.28318530718 4 | -------------------------------------------------------------------------------- /as/assembly/dsp/core/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/core/constants.ts -------------------------------------------------------------------------------- /as/assembly/dsp/core/engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/core/engine.ts -------------------------------------------------------------------------------- /as/assembly/dsp/core/fft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/core/fft.ts -------------------------------------------------------------------------------- /as/assembly/dsp/core/wave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/core/wave.ts -------------------------------------------------------------------------------- /as/assembly/dsp/core/wavetable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/core/wavetable.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/adsr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/adsr.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/aosc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/aosc.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/atan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/atan.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/bap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/bap.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/bbp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/bbp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/bhp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/bhp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/bhs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/bhs.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/biquad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/biquad.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/blp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/blp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/bls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/bls.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/bno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/bno.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/bpk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/bpk.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/clamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/clamp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/clip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/clip.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/comp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/comp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/daverb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/daverb.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/dcc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/dcc.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/dclip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/dclip.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/dclipexp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/dclipexp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/dcliplin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/dcliplin.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/delay.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/diode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/diode.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/exp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/exp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/freesound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/freesound.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/gen.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/gendy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/gendy.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/grain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/grain.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/inc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/inc.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/lp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/lp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/mhp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/mhp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/mlp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/mlp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/moog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/moog.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/noi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/noi.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/nrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/nrate.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/osc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/osc.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/ramp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/ramp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/rate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/rate.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/sap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/sap.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/saw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/saw.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/say.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/say.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/sbp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/sbp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/shp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/shp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/sin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/sin.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/slp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/slp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/smp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/smp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/sno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/sno.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/spk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/spk.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/sqr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/sqr.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/svf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/svf.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/tanh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/tanh.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/tanha.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/tanha.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/tap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/tap.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/tri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/tri.ts -------------------------------------------------------------------------------- /as/assembly/dsp/gen/zero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/gen/zero.ts -------------------------------------------------------------------------------- /as/assembly/dsp/graph/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/graph/copy.ts -------------------------------------------------------------------------------- /as/assembly/dsp/graph/dc-bias-old.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/graph/dc-bias-old.ts -------------------------------------------------------------------------------- /as/assembly/dsp/graph/dc-bias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/graph/dc-bias.ts -------------------------------------------------------------------------------- /as/assembly/dsp/graph/fade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/graph/fade.ts -------------------------------------------------------------------------------- /as/assembly/dsp/graph/fill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/graph/fill.ts -------------------------------------------------------------------------------- /as/assembly/dsp/graph/join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/graph/join.ts -------------------------------------------------------------------------------- /as/assembly/dsp/graph/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/graph/math.ts -------------------------------------------------------------------------------- /as/assembly/dsp/graph/rms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/graph/rms.ts -------------------------------------------------------------------------------- /as/assembly/dsp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/index.ts -------------------------------------------------------------------------------- /as/assembly/dsp/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/shared.ts -------------------------------------------------------------------------------- /as/assembly/dsp/vm/bin-op.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/vm/bin-op.ts -------------------------------------------------------------------------------- /as/assembly/dsp/vm/dsp-shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/vm/dsp-shared.ts -------------------------------------------------------------------------------- /as/assembly/dsp/vm/dsp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/vm/dsp.ts -------------------------------------------------------------------------------- /as/assembly/dsp/vm/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/vm/player.ts -------------------------------------------------------------------------------- /as/assembly/dsp/vm/sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/dsp/vm/sound.ts -------------------------------------------------------------------------------- /as/assembly/gfx/draw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/gfx/draw.ts -------------------------------------------------------------------------------- /as/assembly/gfx/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/gfx/env.ts -------------------------------------------------------------------------------- /as/assembly/gfx/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/gfx/index.ts -------------------------------------------------------------------------------- /as/assembly/gfx/sketch-shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/gfx/sketch-shared.ts -------------------------------------------------------------------------------- /as/assembly/gfx/sketch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/gfx/sketch.ts -------------------------------------------------------------------------------- /as/assembly/gfx/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/gfx/util.ts -------------------------------------------------------------------------------- /as/assembly/pkg/constants.ts: -------------------------------------------------------------------------------- 1 | export const BUFFER_SIZE = 128 2 | -------------------------------------------------------------------------------- /as/assembly/pkg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/pkg/index.ts -------------------------------------------------------------------------------- /as/assembly/pkg/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/pkg/math.ts -------------------------------------------------------------------------------- /as/assembly/pkg/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/pkg/player.ts -------------------------------------------------------------------------------- /as/assembly/pkg/rand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/pkg/rand.ts -------------------------------------------------------------------------------- /as/assembly/pkg/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/pkg/shared.ts -------------------------------------------------------------------------------- /as/assembly/rms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/rms.ts -------------------------------------------------------------------------------- /as/assembly/types.ts: -------------------------------------------------------------------------------- 1 | export type Floats = StaticArray 2 | -------------------------------------------------------------------------------- /as/assembly/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/assembly/util.ts -------------------------------------------------------------------------------- /as/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/as/tsconfig.json -------------------------------------------------------------------------------- /asconfig-dsp-nort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/asconfig-dsp-nort.json -------------------------------------------------------------------------------- /asconfig-dsp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/asconfig-dsp.json -------------------------------------------------------------------------------- /asconfig-gfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/asconfig-gfx.json -------------------------------------------------------------------------------- /asconfig-pkg-nort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/asconfig-pkg-nort.json -------------------------------------------------------------------------------- /asconfig-pkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/asconfig-pkg.json -------------------------------------------------------------------------------- /asconfig-rms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/asconfig-rms.json -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/bunfig.toml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/codecov.yml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /generated/assembly/dsp-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/generated/assembly/dsp-factory.ts -------------------------------------------------------------------------------- /generated/assembly/dsp-offsets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/generated/assembly/dsp-offsets.ts -------------------------------------------------------------------------------- /generated/assembly/dsp-op.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/generated/assembly/dsp-op.ts -------------------------------------------------------------------------------- /generated/assembly/dsp-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/generated/assembly/dsp-runner.ts -------------------------------------------------------------------------------- /generated/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/generated/assembly/tsconfig.json -------------------------------------------------------------------------------- /generated/typescript/dsp-gens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/generated/typescript/dsp-gens.ts -------------------------------------------------------------------------------- /generated/typescript/dsp-vm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/generated/typescript/dsp-vm.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/index.html -------------------------------------------------------------------------------- /kysely.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/kysely.config.ts -------------------------------------------------------------------------------- /lib/caching-router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/lib/caching-router.ts -------------------------------------------------------------------------------- /lib/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/lib/cn.ts -------------------------------------------------------------------------------- /lib/happydom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/lib/happydom.ts -------------------------------------------------------------------------------- /lib/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/lib/icon.ts -------------------------------------------------------------------------------- /lib/lorem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/lib/lorem.ts -------------------------------------------------------------------------------- /lib/rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/lib/rpc.ts -------------------------------------------------------------------------------- /lib/watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/lib/watcher.ts -------------------------------------------------------------------------------- /lib/ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/lib/ws.ts -------------------------------------------------------------------------------- /migrations/1727778500969_user-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/migrations/1727778500969_user-table.ts -------------------------------------------------------------------------------- /migrations/1728040211862_chat-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/migrations/1728040211862_chat-table.ts -------------------------------------------------------------------------------- /migrations/1729663196543_profiles-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/migrations/1729663196543_profiles-table.ts -------------------------------------------------------------------------------- /migrations/1729687226871_sounds-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/migrations/1729687226871_sounds-table.ts -------------------------------------------------------------------------------- /migrations/1729758260210_favorites-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/migrations/1729758260210_favorites-table.ts -------------------------------------------------------------------------------- /migrations/1729771213713_sounds-remixOf-column.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/migrations/1729771213713_sounds-remixOf-column.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/public/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/as-interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/public/as-interop.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/maskable-icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/public/maskable-icon-512x512.png -------------------------------------------------------------------------------- /public/pwa-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/public/pwa-192x192.png -------------------------------------------------------------------------------- /public/pwa-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/public/pwa-512x512.png -------------------------------------------------------------------------------- /public/pwa-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/public/pwa-64x64.png -------------------------------------------------------------------------------- /pwa-assets.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/pwa-assets.config.ts -------------------------------------------------------------------------------- /scripts/generate-dsp-vm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/scripts/generate-dsp-vm.ts -------------------------------------------------------------------------------- /scripts/update-dsp-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/scripts/update-dsp-factory.ts -------------------------------------------------------------------------------- /scripts/update-gens-offsets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/scripts/update-gens-offsets.ts -------------------------------------------------------------------------------- /scripts/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/scripts/util.ts -------------------------------------------------------------------------------- /src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ambient.d.ts -------------------------------------------------------------------------------- /src/as/dsp/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/build.ts -------------------------------------------------------------------------------- /src/as/dsp/constants.ts: -------------------------------------------------------------------------------- 1 | export const DEBUG = false 2 | -------------------------------------------------------------------------------- /src/as/dsp/dsp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/dsp.ts -------------------------------------------------------------------------------- /src/as/dsp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/index.ts -------------------------------------------------------------------------------- /src/as/dsp/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/node.ts -------------------------------------------------------------------------------- /src/as/dsp/notes-shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/notes-shared.ts -------------------------------------------------------------------------------- /src/as/dsp/params-shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/params-shared.ts -------------------------------------------------------------------------------- /src/as/dsp/pre-post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/pre-post.ts -------------------------------------------------------------------------------- /src/as/dsp/preview-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/preview-service.ts -------------------------------------------------------------------------------- /src/as/dsp/preview-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/preview-worker.ts -------------------------------------------------------------------------------- /src/as/dsp/rms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/rms.ts -------------------------------------------------------------------------------- /src/as/dsp/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/shared.ts -------------------------------------------------------------------------------- /src/as/dsp/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/util.ts -------------------------------------------------------------------------------- /src/as/dsp/value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/value.ts -------------------------------------------------------------------------------- /src/as/dsp/wasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/wasm.ts -------------------------------------------------------------------------------- /src/as/dsp/worklet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/dsp/worklet.ts -------------------------------------------------------------------------------- /src/as/gfx/anim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/gfx/anim.ts -------------------------------------------------------------------------------- /src/as/gfx/gfx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/gfx/gfx.ts -------------------------------------------------------------------------------- /src/as/gfx/glsl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/gfx/glsl.ts -------------------------------------------------------------------------------- /src/as/gfx/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/gfx/index.ts -------------------------------------------------------------------------------- /src/as/gfx/mesh-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/gfx/mesh-info.ts -------------------------------------------------------------------------------- /src/as/gfx/meshes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/gfx/meshes.ts -------------------------------------------------------------------------------- /src/as/gfx/shapes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/gfx/shapes.ts -------------------------------------------------------------------------------- /src/as/gfx/sketch-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/gfx/sketch-info.ts -------------------------------------------------------------------------------- /src/as/gfx/sketch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/gfx/sketch.ts -------------------------------------------------------------------------------- /src/as/gfx/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/gfx/types.ts -------------------------------------------------------------------------------- /src/as/gfx/wasm-matrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/gfx/wasm-matrix.ts -------------------------------------------------------------------------------- /src/as/gfx/wasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/gfx/wasm.ts -------------------------------------------------------------------------------- /src/as/init-wasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/init-wasm.ts -------------------------------------------------------------------------------- /src/as/pkg/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/pkg/player.ts -------------------------------------------------------------------------------- /src/as/pkg/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/pkg/service.ts -------------------------------------------------------------------------------- /src/as/pkg/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/pkg/shared.ts -------------------------------------------------------------------------------- /src/as/pkg/wasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/pkg/wasm.ts -------------------------------------------------------------------------------- /src/as/pkg/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/pkg/worker.ts -------------------------------------------------------------------------------- /src/as/pkg/worklet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/as/pkg/worklet.ts -------------------------------------------------------------------------------- /src/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/client.tsx -------------------------------------------------------------------------------- /src/comp/AnimMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/AnimMode.tsx -------------------------------------------------------------------------------- /src/comp/AuthModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/AuthModal.tsx -------------------------------------------------------------------------------- /src/comp/DspEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/DspEditor.tsx -------------------------------------------------------------------------------- /src/comp/DspEditorUi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/DspEditorUi.tsx -------------------------------------------------------------------------------- /src/comp/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/Header.tsx -------------------------------------------------------------------------------- /src/comp/Help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/Help.tsx -------------------------------------------------------------------------------- /src/comp/HelpModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/HelpModal.tsx -------------------------------------------------------------------------------- /src/comp/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/Login.tsx -------------------------------------------------------------------------------- /src/comp/LoginOrRegister.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/LoginOrRegister.tsx -------------------------------------------------------------------------------- /src/comp/OAuthLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/OAuthLogin.tsx -------------------------------------------------------------------------------- /src/comp/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/Register.tsx -------------------------------------------------------------------------------- /src/comp/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/ResetPassword.tsx -------------------------------------------------------------------------------- /src/comp/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/Toast.tsx -------------------------------------------------------------------------------- /src/comp/VerifyEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/comp/VerifyEmail.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/env.ts -------------------------------------------------------------------------------- /src/lang/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/lang/index.ts -------------------------------------------------------------------------------- /src/lang/interpreter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/lang/interpreter.test.ts -------------------------------------------------------------------------------- /src/lang/interpreter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/lang/interpreter.ts -------------------------------------------------------------------------------- /src/lang/tokenize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/lang/tokenize.test.ts -------------------------------------------------------------------------------- /src/lang/tokenize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/lang/tokenize.ts -------------------------------------------------------------------------------- /src/lang/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/lang/util.ts -------------------------------------------------------------------------------- /src/pages/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/About.tsx -------------------------------------------------------------------------------- /src/pages/App copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/App copy.tsx -------------------------------------------------------------------------------- /src/pages/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/App.tsx -------------------------------------------------------------------------------- /src/pages/AssemblyScript.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/AssemblyScript.tsx -------------------------------------------------------------------------------- /src/pages/CanvasDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/CanvasDemo.tsx -------------------------------------------------------------------------------- /src/pages/Chat/Channels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/Chat/Channels.tsx -------------------------------------------------------------------------------- /src/pages/Chat/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/Chat/Chat.tsx -------------------------------------------------------------------------------- /src/pages/Chat/Messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/Chat/Messages.tsx -------------------------------------------------------------------------------- /src/pages/Chat/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/Chat/Users.tsx -------------------------------------------------------------------------------- /src/pages/Chat/VideoCall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/Chat/VideoCall.tsx -------------------------------------------------------------------------------- /src/pages/Chat/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/Chat/util.ts -------------------------------------------------------------------------------- /src/pages/CreateProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/CreateProfile.tsx -------------------------------------------------------------------------------- /src/pages/CreateSound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/CreateSound.tsx -------------------------------------------------------------------------------- /src/pages/DspControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/DspControls.tsx -------------------------------------------------------------------------------- /src/pages/EditorDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/EditorDemo.tsx -------------------------------------------------------------------------------- /src/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/Home.tsx -------------------------------------------------------------------------------- /src/pages/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/Logout.tsx -------------------------------------------------------------------------------- /src/pages/OAuthRegister.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/OAuthRegister.tsx -------------------------------------------------------------------------------- /src/pages/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/Profile.tsx -------------------------------------------------------------------------------- /src/pages/QrCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/QrCode.tsx -------------------------------------------------------------------------------- /src/pages/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/Settings.tsx -------------------------------------------------------------------------------- /src/pages/Showcase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/Showcase.tsx -------------------------------------------------------------------------------- /src/pages/UiShowcase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/UiShowcase.tsx -------------------------------------------------------------------------------- /src/pages/WebGLDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/WebGLDemo.tsx -------------------------------------------------------------------------------- /src/pages/WebSockets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/WebSockets.tsx -------------------------------------------------------------------------------- /src/pages/WorkerWorklet/WorkerWorkletDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/WorkerWorklet/WorkerWorkletDemo.tsx -------------------------------------------------------------------------------- /src/pages/WorkerWorklet/basic-processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/WorkerWorklet/basic-processor.ts -------------------------------------------------------------------------------- /src/pages/WorkerWorklet/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/WorkerWorklet/constants.ts -------------------------------------------------------------------------------- /src/pages/WorkerWorklet/free-queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/WorkerWorklet/free-queue.ts -------------------------------------------------------------------------------- /src/pages/WorkerWorklet/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pages/WorkerWorklet/worker.ts -------------------------------------------------------------------------------- /src/pwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/pwa.ts -------------------------------------------------------------------------------- /src/rpc/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/rpc/auth.ts -------------------------------------------------------------------------------- /src/rpc/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/rpc/chat.ts -------------------------------------------------------------------------------- /src/rpc/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/rpc/oauth.ts -------------------------------------------------------------------------------- /src/rpc/profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/rpc/profiles.ts -------------------------------------------------------------------------------- /src/rpc/sounds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/rpc/sounds.ts -------------------------------------------------------------------------------- /src/screen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/screen.ts -------------------------------------------------------------------------------- /src/service-worker/sw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/service-worker/sw.ts -------------------------------------------------------------------------------- /src/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/state.ts -------------------------------------------------------------------------------- /src/test/e2e.test.tsx-fixme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/test/e2e.test.tsx-fixme -------------------------------------------------------------------------------- /src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/theme.ts -------------------------------------------------------------------------------- /src/ui/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/Button.tsx -------------------------------------------------------------------------------- /src/ui/Canvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/Canvas.tsx -------------------------------------------------------------------------------- /src/ui/DropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/DropDown.tsx -------------------------------------------------------------------------------- /src/ui/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/Editor.tsx -------------------------------------------------------------------------------- /src/ui/Fieldset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/Fieldset.tsx -------------------------------------------------------------------------------- /src/ui/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/Heading.tsx -------------------------------------------------------------------------------- /src/ui/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/Input.tsx -------------------------------------------------------------------------------- /src/ui/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/Label.tsx -------------------------------------------------------------------------------- /src/ui/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/Layout.tsx -------------------------------------------------------------------------------- /src/ui/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/Link.tsx -------------------------------------------------------------------------------- /src/ui/editor/buffer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/buffer.test.ts -------------------------------------------------------------------------------- /src/ui/editor/buffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/buffer.ts -------------------------------------------------------------------------------- /src/ui/editor/caret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/caret.ts -------------------------------------------------------------------------------- /src/ui/editor/constants.ts: -------------------------------------------------------------------------------- 1 | export const CLICK_TIMEOUT = 350 2 | -------------------------------------------------------------------------------- /src/ui/editor/dims.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/dims.ts -------------------------------------------------------------------------------- /src/ui/editor/draw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/draw.ts -------------------------------------------------------------------------------- /src/ui/editor/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/history.ts -------------------------------------------------------------------------------- /src/ui/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/index.ts -------------------------------------------------------------------------------- /src/ui/editor/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/input.ts -------------------------------------------------------------------------------- /src/ui/editor/kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/kbd.tsx -------------------------------------------------------------------------------- /src/ui/editor/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/misc.ts -------------------------------------------------------------------------------- /src/ui/editor/mouse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/mouse.ts -------------------------------------------------------------------------------- /src/ui/editor/pane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/pane.ts -------------------------------------------------------------------------------- /src/ui/editor/selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/selection.ts -------------------------------------------------------------------------------- /src/ui/editor/util/begin-of-line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/util/begin-of-line.ts -------------------------------------------------------------------------------- /src/ui/editor/util/escape-regexp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/util/escape-regexp.ts -------------------------------------------------------------------------------- /src/ui/editor/util/find-matching-brackets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/util/find-matching-brackets.ts -------------------------------------------------------------------------------- /src/ui/editor/util/floats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/util/floats.ts -------------------------------------------------------------------------------- /src/ui/editor/util/geometry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/util/geometry.ts -------------------------------------------------------------------------------- /src/ui/editor/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/util/index.ts -------------------------------------------------------------------------------- /src/ui/editor/util/oklch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/util/oklch.ts -------------------------------------------------------------------------------- /src/ui/editor/util/parse-words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/util/parse-words.ts -------------------------------------------------------------------------------- /src/ui/editor/util/regexp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/util/regexp.ts -------------------------------------------------------------------------------- /src/ui/editor/util/rgb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/util/rgb.ts -------------------------------------------------------------------------------- /src/ui/editor/util/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/util/types.ts -------------------------------------------------------------------------------- /src/ui/editor/util/waveform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/util/waveform.ts -------------------------------------------------------------------------------- /src/ui/editor/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/view.tsx -------------------------------------------------------------------------------- /src/ui/editor/widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/widget.ts -------------------------------------------------------------------------------- /src/ui/editor/widgets/error-sub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/widgets/error-sub.ts -------------------------------------------------------------------------------- /src/ui/editor/widgets/hover-mark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/widgets/hover-mark.ts -------------------------------------------------------------------------------- /src/ui/editor/widgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/widgets/index.ts -------------------------------------------------------------------------------- /src/ui/editor/widgets/list-mark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/widgets/list-mark.ts -------------------------------------------------------------------------------- /src/ui/editor/widgets/rms-deco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/widgets/rms-deco.ts -------------------------------------------------------------------------------- /src/ui/editor/widgets/wave-canvas-deco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/widgets/wave-canvas-deco.ts -------------------------------------------------------------------------------- /src/ui/editor/widgets/wave-gl-deco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/widgets/wave-gl-deco.ts -------------------------------------------------------------------------------- /src/ui/editor/widgets/wave-svg-deco.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/editor/widgets/wave-svg-deco.tsx -------------------------------------------------------------------------------- /src/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/ui/index.ts -------------------------------------------------------------------------------- /src/util/copy-ring-into.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/util/copy-ring-into.ts -------------------------------------------------------------------------------- /src/util/mod-wrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/util/mod-wrap.ts -------------------------------------------------------------------------------- /src/util/parse-form.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/util/parse-form.test.tsx -------------------------------------------------------------------------------- /src/util/parse-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/util/parse-form.ts -------------------------------------------------------------------------------- /src/util/stabilizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/src/util/stabilizer.ts -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/style.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendor/as-transform-unroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/vendor/as-transform-unroll.js -------------------------------------------------------------------------------- /vendor/as-transform-update-dsp-gens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/vendor/as-transform-update-dsp-gens.js -------------------------------------------------------------------------------- /vendor/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/vendor/util.js -------------------------------------------------------------------------------- /vendor/vite-plugin-assemblyscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/vendor/vite-plugin-assemblyscript.ts -------------------------------------------------------------------------------- /vendor/vite-plugin-bundle-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/vendor/vite-plugin-bundle-url.ts -------------------------------------------------------------------------------- /vendor/vite-plugin-cors-coop-coep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/vendor/vite-plugin-cors-coop-coep.ts -------------------------------------------------------------------------------- /vendor/vite-plugin-hex-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/vendor/vite-plugin-hex-loader.ts -------------------------------------------------------------------------------- /vendor/vite-plugin-open-in-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/vendor/vite-plugin-open-in-editor.ts -------------------------------------------------------------------------------- /vendor/vite-plugin-print-address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/vendor/vite-plugin-print-address.ts -------------------------------------------------------------------------------- /vendor/vite-plugin-using.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/vendor/vite-plugin-using.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stagas/ravescript/HEAD/vite.config.ts --------------------------------------------------------------------------------