Skip to content

Commit

Permalink
update settings
Browse files Browse the repository at this point in the history
  • Loading branch information
umjammer committed Nov 30, 2024
1 parent e4df4c8 commit 5223bb5
Show file tree
Hide file tree
Showing 4 changed files with 489 additions and 6 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# vavi-sound-sandbox

🌏 play the world
🪏 play in the sandbox

### Status

Expand Down Expand Up @@ -138,6 +138,7 @@ clip.loop(Clip.LOOP_CONTINUOUSLY);
* need to fix: dro(old), midi, etc?
* opl3 volume
* opl3 midi reader
* https://github.com/Wohlstand/ADLMIDI-Player-Java
* https://github.com/fedex81/emuSandbox
* https://github.com/toyoshim/tss
* ~~Apple DLS Sound device~~ (done)
Expand All @@ -157,6 +158,7 @@ clip.loop(Clip.LOOP_CONTINUOUSLY);
* [thanks](http://asamomiji.jp/contents/mml-player)
* crackling at end https://stackoverflow.com/a/9630897
* https://github.com/trrk/FlMML-for-Android
* spi

### ebml

Expand Down
13 changes: 8 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@
<compilerArgs>
<arg>--add-exports</arg>
<arg>java.desktop/com.sun.media.sound=ALL-UNNAMED</arg>
<arg>--add-exports</arg>
<arg>java.base/sun.nio.ch=ALL-UNNAMED</arg>
</compilerArgs>
<!-- https://stackoverflow.com/a/30472473 -->
<fork>true</fork>
Expand Down Expand Up @@ -154,8 +156,9 @@
<configuration>
<argLine>
-Xmx4G
--add-modules jdk.incubator.vector
--add-exports java.desktop/com.sun.media.sound=ALL-UNNAMED
--add-exports=java.desktop/com.sun.media.sound=ALL-UNNAMED
--add-opens=java.base/java.io=ALL-UNNAMED
--add-opens=java.base/sun.nio.ch=ALL-UNNAMED
-javaagent:${project.build.directory}/vavi-instrumentation.jar
-Dvavix.lang.instrumentation.VaviInstrumentation.1=vavix.lang.instrumentation.PropertiesClassFileTransformer
-Djava.util.logging.config.file=${project.build.testOutputDirectory}/logging.properties
Expand Down Expand Up @@ -447,9 +450,9 @@
</dependency>

<dependency>
<groupId>com.github.umjammer</groupId> <!-- com.github.umjammer -->
<groupId>vavi</groupId> <!-- com.github.umjammer / vavi -->
<artifactId>vavi-util-screenscraping</artifactId>
<version>1.0.14</version>
<version>1.0.15-SNAPSHOT</version>
<scope>test</scope>
</dependency>

Expand All @@ -463,7 +466,7 @@
<dependency>
<groupId>com.github.umjammer.vavi-commons</groupId>
<artifactId>vavi-instrumentation</artifactId>
<version>1.1.12</version>
<version>1.1.14</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/vavi/sound/opl3/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@

* https://github.com/scemino/NScumm.Audio
* 🚧🚫 maybe dual opl implementation is needed ... see [javamod](https://github.com/umjammer/javamod)
* vavi.sound.midi.opl3 and vavi.sound.opl3 are interdependence (Context, Opl3Instrument)
Loading

0 comments on commit 5223bb5

Please sign in to comment.