Skip to content
This repository has been archived by the owner on May 14, 2020. It is now read-only.

Commit

Permalink
Started assembling projects
Browse files Browse the repository at this point in the history
  • Loading branch information
cambiata committed Dec 10, 2014
1 parent 477f726 commit a5f5ab6
Show file tree
Hide file tree
Showing 97 changed files with 1,946 additions and 277 deletions.
2 changes: 1 addition & 1 deletion MixWavOpenFl.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta title="OpenFLMixWav" package="OpenFLMixWav" version="1.0.0" company="Jonas Nyström" />

<!-- output -->
<app main="OpenFLMixWav" file="OpenFLMixWav" path="bin" />
<app main="examples.mix.OpenFLMixWav" file="OpenFLMixWav" path="bin" />

<window background="#ffffff" fps="60" />
<window width="1000" height="600" unless="mobile" />
Expand Down
5 changes: 5 additions & 0 deletions Package
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@echo off
cd bin
echo Creating standalone command line executable...
nekotools boot AssembleMp3Neko.n
pause
58 changes: 58 additions & 0 deletions ProjAssembleFlash.hxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<project version="2">
<!-- Output SWF options -->
<output>
<movie outputType="Application" />
<movie input="" />
<movie path="bin\assemble\AssembleMp3Flash.swf" />
<movie fps="30" />
<movie width="800" />
<movie height="600" />
<movie version="12" />
<movie minorVersion="0" />
<movie platform="Flash Player" />
<movie background="#FFFFFF" />
</output>
<!-- Other classes to be compiled into your SWF -->
<classpaths>
<class path="src" />
</classpaths>
<!-- Build options -->
<build>
<option directives="" />
<option flashStrict="False" />
<option noInlineOnDebug="False" />
<option mainClass="examples.assemble.Main" />
<option enabledebug="True" />
<option additional="" />
</build>
<!-- haxelib libraries -->
<haxelib>
<library name="format" />
</haxelib>
<!-- Class files to compile (other referenced classes will automatically be included) -->
<compileTargets>
<compile path="src\assemble\Main.hx" />
<compile path="src\examples\assemble\Main.hx" />
</compileTargets>
<!-- Assets to embed into the output SWF -->
<library>
<!-- example: <asset path="..." id="..." update="..." glyphs="..." mode="..." place="..." sharepoint="..." /> -->
</library>
<!-- Paths to exclude from the Project Explorer tree -->
<hiddenPaths>
<hidden path="obj" />
</hiddenPaths>
<!-- Executed before build -->
<preBuildCommand />
<!-- Executed after build -->
<postBuildCommand alwaysRun="False" />
<!-- Other project options -->
<options>
<option showHiddenPaths="True" />
<option testMovie="Default" />
<option testMovieCommand="" />
</options>
<!-- Plugin storage -->
<storage />
</project>
54 changes: 54 additions & 0 deletions ProjAssembleNeko.hxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<project version="2">
<!-- Output SWF options -->
<output>
<movie outputType="Application" />
<movie input="" />
<movie path="bin\assemble\AssembleMp3Neko.n" />
<movie fps="0" />
<movie width="0" />
<movie height="0" />
<movie version="1" />
<movie minorVersion="0" />
<movie platform="Neko" />
<movie background="#FFFFFF" />
</output>
<!-- Other classes to be compiled into your SWF -->
<classpaths>
<class path="src" />
</classpaths>
<!-- Build options -->
<build>
<option directives="" />
<option flashStrict="False" />
<option noInlineOnDebug="False" />
<option mainClass="examples.assemble.Main" />
<option enabledebug="False" />
<option additional="" />
</build>
<!-- haxelib libraries -->
<haxelib>
<library name="format" />
</haxelib>
<!-- Class files to compile (other referenced classes will automatically be included) -->
<compileTargets>
<compile path="src\Main.hx" />
<compile path="src\examples\assemble\Main.hx" />
</compileTargets>
<!-- Paths to exclude from the Project Explorer tree -->
<hiddenPaths>
<hidden path="obj" />
</hiddenPaths>
<!-- Executed before build -->
<preBuildCommand />
<!-- Executed after build -->
<postBuildCommand alwaysRun="False" />
<!-- Other project options -->
<options>
<option showHiddenPaths="False" />
<option testMovie="Custom" />
<option testMovieCommand="RunAssembleMp3.bat" />
</options>
<!-- Plugin storage -->
<storage />
</project>
53 changes: 53 additions & 0 deletions ProjAssembleWebAudio.hxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
<project version="2">
<!-- Output SWF options -->
<output>
<movie outputType="Application" />
<movie input="" />
<movie path="bin\assemble\AssembleMp3WebAudio.js" />
<movie fps="0" />
<movie width="0" />
<movie height="0" />
<movie version="1" />
<movie minorVersion="0" />
<movie platform="JavaScript" />
<movie background="#FFFFFF" />
</output>
<!-- Other classes to be compiled into your SWF -->
<classpaths>
<class path="src" />
</classpaths>
<!-- Build options -->
<build>
<option directives="" />
<option flashStrict="False" />
<option noInlineOnDebug="False" />
<option mainClass="examples.assemble.Main" />
<option enabledebug="False" />
<option additional="" />
</build>
<!-- haxelib libraries -->
<haxelib>
<library name="format" />
</haxelib>
<!-- Class files to compile (other referenced classes will automatically be included) -->
<compileTargets>
<compile path="src\examples\assemble\Main.hx" />
</compileTargets>
<!-- Paths to exclude from the Project Explorer tree -->
<hiddenPaths>
<hidden path="obj" />
</hiddenPaths>
<!-- Executed before build -->
<preBuildCommand />
<!-- Executed after build -->
<postBuildCommand alwaysRun="False" />
<!-- Other project options -->
<options>
<option showHiddenPaths="False" />
<option testMovie="Webserver" />
<option testMovieCommand="bin/index.html" />
</options>
<!-- Plugin storage -->
<storage />
</project>
6 changes: 3 additions & 3 deletions Mp3DecodeFlash.hxproj → ProjDecodeFlash.hxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<output>
<movie outputType="Application" />
<movie input="" />
<movie path="bin\mp3\Mp3DecodeFlash.swf" />
<movie path="bin\decode\Mp3DecodeFlash.swf" />
<movie fps="30" />
<movie width="800" />
<movie height="600" />
Expand All @@ -22,7 +22,7 @@
<option directives="" />
<option flashStrict="False" />
<option noInlineOnDebug="False" />
<option mainClass="Mp3DecodeFlash" />
<option mainClass="examples.decode.Main" />
<option enabledebug="True" />
<option additional="" />
</build>
Expand All @@ -34,7 +34,7 @@
<compileTargets>
<compile path="src\FlashMain.hx" />
<compile path="src\FlashMp3Decode.hx" />
<compile path="src\Mp3DecodeFlash.hx" />
<compile path="src\examples\decode\Main.hx" />
</compileTargets>
<!-- Assets to embed into the output SWF -->
<library>
Expand Down
6 changes: 3 additions & 3 deletions Mp3DecodeNeko.hxproj → ProjDecodeNeko.hxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<output>
<movie outputType="Application" />
<movie input="" />
<movie path="bin\Mp3DecodeNeko.n" />
<movie path="bin\decode\Mp3DecodeNeko.n" />
<movie fps="0" />
<movie width="0" />
<movie height="0" />
Expand All @@ -22,7 +22,7 @@
<option directives="" />
<option flashStrict="False" />
<option noInlineOnDebug="False" />
<option mainClass="Mp3DecodeNeko" />
<option mainClass="examples.decode.Main" />
<option enabledebug="False" />
<option additional="" />
</build>
Expand All @@ -34,7 +34,7 @@
<compileTargets>
<compile path="src\Main.hx" />
<compile path="src\NekoMain.hx" />
<compile path="src\Mp3DecodeNeko.hx" />
<compile path="src\examples\decode\Main.hx" />
</compileTargets>
<!-- Paths to exclude from the Project Explorer tree -->
<hiddenPaths>
Expand Down
7 changes: 3 additions & 4 deletions Mp3DecodeWebAudio.hxproj → ProjDecodeWebAuido.hxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<output>
<movie outputType="Application" />
<movie input="" />
<movie path="bin\mp3\Mp3DecodeWebAudio.js" />
<movie path="bin\decode\Mp3DecodeWebAudio.js" />
<movie fps="0" />
<movie width="0" />
<movie height="0" />
Expand All @@ -22,7 +22,7 @@
<option directives="" />
<option flashStrict="False" />
<option noInlineOnDebug="False" />
<option mainClass="Mp3DecodeWebAudio" />
<option mainClass="examples.decode.Main" />
<option enabledebug="False" />
<option additional="" />
</build>
Expand All @@ -32,9 +32,8 @@
</haxelib>
<!-- Class files to compile (other referenced classes will automatically be included) -->
<compileTargets>
<compile path="src\Main.hx" />
<compile path="src\WebAudioMp3Decode.hx" />
<compile path="src\Mp3DecodeWebAudio.hx" />
<compile path="src\examples\decode\Main.hx" />
</compileTargets>
<!-- Paths to exclude from the Project Explorer tree -->
<hiddenPaths>
Expand Down
6 changes: 4 additions & 2 deletions MixWavNeko.hxproj → ProjMixNeko.hxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<output>
<movie outputType="Application" />
<movie input="" />
<movie path="bin\MixWavNeko.n" />
<movie path="bin\mix\MixWavNeko.n" />
<movie fps="0" />
<movie width="0" />
<movie height="0" />
Expand All @@ -22,7 +22,7 @@
<option directives="" />
<option flashStrict="False" />
<option noInlineOnDebug="False" />
<option mainClass="NekoMixWav" />
<option mainClass="examples.mix.NekoMixWav" />
<option enabledebug="False" />
<option additional="" />
</build>
Expand All @@ -34,6 +34,8 @@
<compileTargets>
<compile path="src\Main.hx" />
<compile path="src\NekoMixWav.hx" />
<compile path="src\mix\NekoMixWav.hx" />
<compile path="src\examples\mix\NekoMixWav.hx" />
</compileTargets>
<!-- Paths to exclude from the Project Explorer tree -->
<hiddenPaths>
Expand Down
10 changes: 5 additions & 5 deletions MixWavOpenFl.hxproj → ProjMixOpenFL.hxproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@
</output>
<!-- Other classes to be compiled into your SWF -->
<classpaths>
<class path="f:\_haxelib\openfl\2,1,5" />
<class path="f:\_haxelib\lime\2,0,0-beta" />
<class path="f:\_haxelib\openfl\2,1,7" />
<class path="f:\_haxelib\lime\2,0,1" />
<class path="f:\_haxelib\format\3,1,2" />
<class path="f:\_haxelib\actuate\1,7,5" />
<class path="src" />
<class path="f:\_haxelib\lime\2,0,0-beta\legacy" />
<class path="f:\_haxelib\lime\2,0,1\legacy" />
<class path="bin\windows\neko\haxe" />
</classpaths>
<!-- Build options -->
<build>
<option directives="openfl=2.1.5&#xA;lime=2.0.0-beta&#xA;format=3.1.2&#xA;actuate=1.7.5&#xA;tools=2.0.0-beta&#xA;lime-legacy&#xA;no-compilation&#xA;native&#xA;lime-native&#xA;openfl-native&#xA;windows&#xA;desktop" />
<option directives="openfl=2.1.7&#xA;lime=2.0.1&#xA;format=3.1.2&#xA;actuate=1.7.5&#xA;tools=2.0.1&#xA;lime-legacy&#xA;no-compilation&#xA;native&#xA;lime-native&#xA;openfl-native&#xA;windows&#xA;desktop" />
<option flashStrict="False" />
<option noInlineOnDebug="False" />
<option mainClass="ApplicationMain" />
<option enabledebug="True" />
<option additional="--remap flash:openfl&#xA;#--macro keep(&quot;OpenFLMixWav&quot;)" />
<option additional="--remap flash:openfl&#xA;#--macro keep(&quot;examples.mix.OpenFLMixWav&quot;)" />
</build>
<!-- haxelib libraries -->
<haxelib>
Expand Down
4 changes: 4 additions & 0 deletions RunAssembleMp3.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@echo off
cd bin/assemble
neko AssembleMp3Neko.n
pause
2 changes: 1 addition & 1 deletion RunMixWavNeko.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@echo off
cd bin
cd bin/mix
neko MixWavNeko.n
pause
2 changes: 1 addition & 1 deletion RunMp3DecodeNeko.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@echo off
cd bin
cd bin/decode
neko Mp3DecodeNeko.n
pause
Binary file added bin/assemble/AssembleMp3Flash.swf
Binary file not shown.
Binary file added bin/assemble/AssembleMp3Neko.n
Binary file not shown.
Loading

0 comments on commit a5f5ab6

Please sign in to comment.