├── .gitignore ├── .vs ├── Sunaba │ └── v17 │ │ └── .suo └── VSWorkspaceState.json ├── README.md ├── SunabaEnvForC ├── windows │ ├── SunabaEnvForC.h │ └── test │ │ ├── Makefile │ │ ├── test.c │ │ ├── test.sln │ │ ├── test.vcxproj │ │ └── test.vcxproj.filters └── 説明書.txt ├── SunabaUnity ├── .gitignore ├── .vscode │ └── settings.json ├── Assembly-CSharp-Editor.csproj ├── Assembly-CSharp.csproj ├── Assets │ ├── DropHandlerWrapper.cs │ ├── DropHandlerWrapper.cs.meta │ ├── ExternalAssets.meta │ ├── ExternalAssets │ │ ├── B83.Win32.cs │ │ ├── B83.Win32.cs.meta │ │ ├── UniDragAndDrop.meta │ │ └── UniDragAndDrop │ │ │ ├── Plugins.meta │ │ │ ├── Plugins │ │ │ ├── macOS.meta │ │ │ └── macOS │ │ │ │ ├── UniDragAndDrop.bundle.meta │ │ │ │ └── UniDragAndDrop.bundle │ │ │ │ ├── Contents.meta │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── Info.plist.meta │ │ │ │ ├── MacOS.meta │ │ │ │ ├── MacOS │ │ │ │ ├── UniDragAndDrop │ │ │ │ └── UniDragAndDrop.meta │ │ │ │ ├── _CodeSignature.meta │ │ │ │ └── _CodeSignature │ │ │ │ ├── CodeResources │ │ │ │ └── CodeResources.meta │ │ │ ├── UniDragAndDrop.asmdef │ │ │ ├── UniDragAndDrop.asmdef.meta │ │ │ ├── UniDragAndDrop.cs │ │ │ └── UniDragAndDrop.cs.meta │ ├── Main.cs │ ├── Main.cs.meta │ ├── Main.unity │ ├── Main.unity.meta │ ├── Settings.meta │ ├── Settings │ │ ├── SampleSceneProfile.asset │ │ ├── SampleSceneProfile.asset.meta │ │ ├── URP-Balanced-Renderer.asset │ │ ├── URP-Balanced-Renderer.asset.meta │ │ ├── URP-Balanced.asset │ │ ├── URP-Balanced.asset.meta │ │ ├── URP-HighFidelity-Renderer.asset │ │ ├── URP-HighFidelity-Renderer.asset.meta │ │ ├── URP-HighFidelity.asset │ │ ├── URP-HighFidelity.asset.meta │ │ ├── URP-Performant-Renderer.asset │ │ ├── URP-Performant-Renderer.asset.meta │ │ ├── URP-Performant.asset │ │ └── URP-Performant.asset.meta │ ├── SoundSynthesizer.cs │ ├── SoundSynthesizer.cs.meta │ ├── SpectrumViewer.cs │ ├── SpectrumViewer.cs.meta │ ├── StreamingAssets.meta │ ├── SunabaEngine.meta │ ├── SunabaEngine │ │ ├── Assembler.meta │ │ ├── Assembler │ │ │ ├── Assembler.cs │ │ │ └── Assembler.cs.meta │ │ ├── Compiler.meta │ │ ├── Compiler │ │ │ ├── CodeGenerator.cs │ │ │ ├── CodeGenerator.cs.meta │ │ │ ├── Compiler.cs │ │ │ ├── Compiler.cs.meta │ │ │ ├── Concatenator.cs │ │ │ ├── Concatenator.cs.meta │ │ │ ├── FunctionGenerator.cs │ │ │ ├── FunctionGenerator.cs.meta │ │ │ ├── FunctionInfo.cs │ │ │ ├── FunctionInfo.cs.meta │ │ │ ├── LexicalAnalyzer.cs │ │ │ ├── LexicalAnalyzer.cs.meta │ │ │ ├── Node.cs │ │ │ ├── Node.cs.meta │ │ │ ├── Parser.cs │ │ │ ├── Parser.cs.meta │ │ │ ├── Structurizer.cs │ │ │ ├── Structurizer.cs.meta │ │ │ ├── Token.cs │ │ │ └── Token.cs.meta │ │ ├── Localization.cs │ │ ├── Localization.cs.meta │ │ ├── Machine.meta │ │ ├── Machine │ │ │ ├── Instruction.cs │ │ │ ├── Instruction.cs.meta │ │ │ ├── IoState.cs │ │ │ ├── IoState.cs.meta │ │ │ ├── Machine.cs │ │ │ └── Machine.cs.meta │ │ ├── Proprosessor.meta │ │ ├── Proprosessor │ │ │ ├── CharacterReplacer.cs │ │ │ ├── CharacterReplacer.cs.meta │ │ │ ├── CommentRemover.cs │ │ │ ├── CommentRemover.cs.meta │ │ │ ├── TabProcessor.cs │ │ │ └── TabProcessor.cs.meta │ │ ├── SunabaEngine.asmdef │ │ ├── SunabaEngine.asmdef.meta │ │ ├── Utility.cs │ │ └── Utility.cs.meta │ ├── TutorialInfo.meta │ ├── TutorialInfo │ │ ├── Icons.meta │ │ ├── Icons │ │ │ ├── URP.png │ │ │ └── URP.png.meta │ │ ├── Layout.wlt │ │ ├── Layout.wlt.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── ReadmeEditor.cs │ │ │ └── ReadmeEditor.cs.meta │ │ │ ├── Readme.cs │ │ │ └── Readme.cs.meta │ ├── UniversalRenderPipelineGlobalSettings.asset │ └── UniversalRenderPipelineGlobalSettings.asset.meta ├── Packages │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── BurstAotSettings_Android.json │ ├── BurstAotSettings_StandaloneOSX.json │ ├── BurstAotSettings_StandaloneWindows.json │ ├── BurstAotSettings_iOS.json │ ├── ClusterInputManager.asset │ ├── CommonBurstAotSettings.json │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── ShaderGraphSettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── URPProjectSettings.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRSettings.asset │ └── boot.config ├── SunabaEngine.csproj ├── SunabaUnity.sln ├── UniDragAndDrop.csproj ├── UserSettings │ ├── EditorUserSettings.asset │ ├── Layouts │ │ └── default-2021.dwlt │ ├── Search.index │ └── Search.settings ├── draw.txt ├── memory.txt ├── theGame.txt └── theGame2.txt ├── SunabaWeb ├── SunabaMain.js ├── assemblerTest.txt └── index.html ├── dist ├── sunaba_mac_200210517.zip ├── sunaba_windows11_20220402.zip └── sunaba_windows_20210518.zip ├── index.html ├── samples ├── Sunaba上級ガイドサンプル │ ├── library │ │ ├── algorithm.txt │ │ ├── error.txt │ │ ├── graphics.txt │ │ ├── input.txt │ │ ├── ioMap.txt │ │ ├── memory.txt │ │ ├── music.txt │ │ ├── sample │ │ │ ├── 2dPhysics.txt │ │ │ ├── drawing.txt │ │ │ └── music.txt │ │ ├── system.txt │ │ ├── test │ │ │ └── テスト.txt │ │ ├── utility.txt │ │ └── vector2.txt │ ├── simpleDrawing.txt │ ├── subProgram.txt │ └── textOutput.txt ├── サンプル │ ├── 10章 │ │ ├── 00_不要部分削除.txt │ │ ├── 01_底の隣で止まる.txt │ │ ├── 02_左右移動復活.txt │ │ ├── 03_壁の隣で止まる0.txt │ │ ├── 04_壁の隣で止まる1.txt │ │ ├── 05_底の隣で止めて白く.txt │ │ ├── 06_落ちたら戻る.txt │ │ ├── 07_底以外に当たる.txt │ │ ├── 08_底以外に当たる整理.txt │ │ ├── 09_積もるし壁に当たる.txt │ │ ├── 10_積もるし左右からも当たる.txt │ │ ├── 11_積もるし左右からも当たる整理0.txt │ │ ├── 12_積もるし左右からも当たる整理1.txt │ │ └── 13_10章集大成.txt │ ├── 11章 │ │ ├── 00_消えるだけ.txt │ │ ├── 01_消えるだけテスト用.txt │ │ ├── 02_消えるだけテスト用整理版.txt │ │ ├── 03_落ちない.txt │ │ ├── 04_十字に四角.txt │ │ ├── 05_十字に四角_わかりにくい.txt │ │ ├── 06_部分プログラムへの入力例.txt │ │ ├── 07_消えるだけ入力使用.txt │ │ ├── 08_消えた後1マス落ちる.txt │ │ ├── 09_消えた後1マス落ちる_たくさん積んでおく.txt │ │ ├── 10_消えて落ちる_テスト付き.txt │ │ └── 11_消えて落ちる_別解.txt │ ├── 12章 │ │ ├── 00_とりあえず2つ.txt │ │ ├── 01_回転準備.txt │ │ ├── 02_回転準備一つ下へ.txt │ │ ├── 03_とりあえず回った状態に.txt │ │ ├── 04_馬鹿正直に一周回す.txt │ │ ├── 05_賢く回す.txt │ │ ├── 06_とりあえず2つ_整理0.txt │ │ ├── 07_とりあえず2つ_整理1.txt │ │ ├── 08_とりあえず2つ_整理2.txt │ │ ├── 09_とりあえず2つ_整理3.txt │ │ ├── 10_とりあえず2つ_整理4.txt │ │ ├── 11_回転組み込み準備.txt │ │ ├── 12_回転を組み込んだが.txt │ │ ├── 13_回転完成.txt │ │ ├── 14_正しく消せる.txt │ │ └── 15_12章集大成.txt │ ├── 13章 │ │ ├── 00_とりあえず3マス.txt │ │ ├── 01_3マス2種類_間違い入り.txt │ │ ├── 02_3マス2種類.txt │ │ ├── 03_3マスを馬鹿正直に回す.txt │ │ ├── 04_3マスを馬鹿正直に回す_改良0.txt │ │ ├── 05_3マスを馬鹿正直に回す_改良1.txt │ │ ├── 06_3マスを回す.txt │ │ ├── 07_3マスを逆に回す.txt │ │ ├── 08_とりあえず4マス.txt │ │ ├── 09_4マスを回す.txt │ │ ├── 10_4マスを回す_表は半分.txt │ │ ├── 11_4マスを回す_表は半分で整理.txt │ │ ├── 12_完成.txt │ │ └── 13_余り.txt │ ├── 14章 │ │ ├── お手本JavaScript版.html │ │ └── お手本英語風.txt │ ├── 2章 │ │ ├── 00_最初のプログラム.txt │ │ ├── 01_体重と身長.txt │ │ ├── 02_初めての四角.txt │ │ ├── 03_白黒写真.txt │ │ ├── 04_カラー写真.txt │ │ ├── 05_上端真ん中に四角.txt │ │ ├── 06_真ん中に四角.txt │ │ └── 元画像 │ │ │ ├── カラー写真.bmp │ │ │ └── 白黒写真.bmp │ ├── 3章 │ │ ├── 00_はじめてのくり返し.txt │ │ ├── 01_16回点を塗る.txt │ │ ├── 02_16個点を塗る.txt │ │ ├── 03_短く16個点を塗る.txt │ │ ├── 04_4回くり返して四角.txt │ │ ├── 05_くり返しで四角0.txt │ │ ├── 06_くり返しで四角1.txt │ │ ├── 07_くり返しで四角完成.txt │ │ ├── 08_変なメモリを使ってくり返しで四角.txt │ │ ├── 09_画面塗りつぶし.txt │ │ └── 10_真ん中にくり返しで四角.txt │ ├── 4章 │ │ ├── 00_四角を20回描く.txt │ │ ├── 01_無視される空白.txt │ │ ├── 02_四角を20個描く.txt │ │ ├── 03_右の壁.txt │ │ ├── 04_底.txt │ │ ├── 05_素直に壁と底.txt │ │ ├── 06_左右くり返し統合0.txt │ │ ├── 07_左右くり返し統合1.txt │ │ ├── 08_左右くり返し統合2.txt │ │ ├── 09_左右くり返し統合3.txt │ │ ├── 10_壁と底左右のみ統合.txt │ │ ├── 11_壁と底くり返し順序変更.txt │ │ ├── 12_壁と底くり返し統合0.txt │ │ └── 13_壁と底くり返し統合済み.txt │ ├── 5章 │ │ ├── 00_参照使用前.txt │ │ ├── 01_はじめての参照.txt │ │ ├── 02_はじめての参照逆順.txt │ │ ├── 03_部分プログラムで違う点.txt │ │ ├── 04_部分プログラムで底.txt │ │ ├── 05_部分プログラムで壁と底.txt │ │ ├── 06_もっと部分プログラムで壁と底.txt │ │ ├── 07_新しい四角.txt │ │ └── 08_わかりやすく壁と底.txt │ ├── 6章 │ │ ├── 00_点一つ.txt │ │ ├── 01_点二つ.txt │ │ ├── 02_点が一歩動く.txt │ │ ├── 03_点が三歩動く.txt │ │ ├── 04_点百個.txt │ │ ├── 05_点が下まで動く.txt │ │ ├── 06_部分プログラム四角.txt │ │ ├── 07_四角が落ちるはずだが.txt │ │ ├── 08_四角が落ちる0.txt │ │ ├── 09_四角が落ちる1.txt │ │ ├── 10_四角が落ちる2.txt │ │ ├── 11_四角が落ちる3.txt │ │ ├── 12_四角が高速に落ちるはず.txt │ │ ├── 13_四角が高速に落ちる.txt │ │ ├── 14_四角が高速に落ちるはずなのに.txt │ │ ├── 15_壁と底がある中落ちる0.txt │ │ ├── 16_壁と底がある中落ちる1.txt │ │ ├── 17_壁と底がある中落ちる2.txt │ │ └── 18_壁と底がある中落ちる完成.txt │ ├── 7章 │ │ └── 00_名前付きメモリ使用.txt │ ├── 8章 │ │ ├── 00_左キーに反応0.txt │ │ ├── 01_左キーに反応1.txt │ │ ├── 02_左キーに反応2.txt │ │ ├── 03_下に動かす.txt │ │ ├── 04_下に動かす手加減オフ.txt │ │ ├── 05_上下に動かす.txt │ │ ├── 06_上下左右に動かす.txt │ │ ├── 07_四角を上下左右に動かす.txt │ │ ├── 08_右に動かす.txt │ │ ├── 09_一回だけ右0.txt │ │ ├── 10_一回だけ右1.txt │ │ ├── 11_一回だけ上下左右.txt │ │ ├── 12_一回だけ上下左右改.txt │ │ ├── 13_一回だけ上下左右アルファベット.txt │ │ ├── 14_一回だけ四角を上下左右.txt │ │ ├── 15_背景付きで左右移動.txt │ │ └── 16_背景落下付き左右移動.txt │ ├── 9章 │ │ ├── 00_横線0.txt │ │ ├── 01_横線1.txt │ │ ├── 02_横線2.txt │ │ ├── 03_横線3.txt │ │ ├── 04_くり返しで実行するしない0.txt │ │ ├── 05_くり返しで実行するしない1.txt │ │ ├── 06_赤か緑.txt │ │ ├── 07_赤か緑_条件実行版.txt │ │ ├── 07_赤か緑_条件実行版.txt~ │ │ ├── 08_条件実行で横線.txt │ │ ├── 09_条件実行で四角が遅く落ちてくる.txt │ │ ├── 09_条件実行で四角が遅く落ちてくる.txt~ │ │ ├── 10_9章集大成.txt │ │ └── 10_9章集大成.txt~ │ ├── お手本.txt │ └── お手本豪華版.txt └── リバーシサンプル │ ├── リバーシお手本.txt │ └── 三目並べお手本.txt ├── src ├── .gitignore ├── Sunaba.sln ├── Sunaba │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Sunaba.csproj │ ├── Sunaba.csproj.user │ └── app.config ├── SunabaLib │ ├── AssemblyInfo.cpp │ ├── SunabaLib.cpp │ ├── SunabaLib.h │ ├── SunabaLib.vcproj │ ├── SunabaLib.vcproj.AMDT.HirayamaT2.user │ ├── SunabaLib.vcxproj │ ├── SunabaLib.vcxproj.filters │ ├── SunabaLib.vcxproj.user │ ├── app.ico │ ├── app.rc │ └── resource.h ├── clean.sh ├── cpp │ ├── Base │ │ ├── mac │ │ │ └── Os.mm │ │ └── pc │ │ │ └── Os.cpp │ ├── Graphics │ │ ├── mac │ │ │ └── Graphics.cpp │ │ └── pc │ │ │ └── Graphics.cpp │ └── Sound │ │ ├── mac │ │ └── Sound.cpp │ │ └── pc │ │ └── Sound.cpp ├── include │ ├── Base │ │ ├── Array.h │ │ ├── Base.h │ │ ├── MemoryPool.h │ │ ├── Os.h │ │ ├── RefString.h │ │ ├── String.h │ │ ├── Tank.h │ │ ├── TextFile.h │ │ ├── Utility.h │ │ └── inc │ │ │ ├── Array.inc.h │ │ │ ├── MemoryPool.inc.h │ │ │ ├── RefString.inc.h │ │ │ ├── String.inc.h │ │ │ ├── Tank.inc.h │ │ │ ├── TextFile.inc.h │ │ │ └── Utility.inc.h │ ├── Compiler │ │ ├── Assembler.h │ │ ├── CharacterReplacer.h │ │ ├── CodeGenerator.h │ │ ├── CommentRemover.h │ │ ├── Compiler.h │ │ ├── Concatenator.h │ │ ├── FunctionGenerator.h │ │ ├── FunctionInfo.h │ │ ├── LexicalAnalyzer.h │ │ ├── Node.h │ │ ├── Parser.h │ │ ├── Structurizer.h │ │ ├── TabProcessor.h │ │ ├── Token.h │ │ └── inc │ │ │ ├── Assembler.inc.h │ │ │ ├── CharacterReplacer.inc.h │ │ │ ├── CodeGenerator.inc.h │ │ │ ├── CommentRemover.inc.h │ │ │ ├── Compiler.inc.h │ │ │ ├── Concatenator.inc.h │ │ │ ├── FunctionGenerator.inc.h │ │ │ ├── FunctionInfo.inc.h │ │ │ ├── LexicalAnalyzer.inc.h │ │ │ ├── Node.inc.h │ │ │ ├── Parser.inc.h │ │ │ ├── Structurizer.inc.h │ │ │ ├── TabProcessor.inc.h │ │ │ └── Token.inc.h │ ├── Graphics │ │ └── Graphics.h │ ├── Localization.h │ ├── Machine │ │ ├── Instruction.h │ │ ├── IoState.h │ │ ├── Machine.h │ │ └── inc │ │ │ ├── Instruction.inc.h │ │ │ ├── IoState.inc.h │ │ │ └── Machine.inc.h │ ├── Sound │ │ ├── Sound.h │ │ └── SoundChannel.h │ ├── System.h │ └── inc │ │ ├── Localization.chinese.inc.h │ │ ├── Localization.japanese.inc.h │ │ ├── Localization.korean.inc.h │ │ └── System.inc.h ├── mac │ ├── .gitignore │ ├── MacSunaba.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── hirayama-takashi.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── hirayama-takashi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── MacSunaba.xcscheme │ │ │ └── xcschememanagement.plist │ ├── MacSunaba │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── MacSunaba-Info.plist │ │ ├── MyController.h │ │ ├── MyController.m │ │ ├── MyGLView.h │ │ ├── MyGLView.mm │ │ ├── MyView.h │ │ ├── MyView.mm │ │ ├── SunabaWrapper.h │ │ ├── SunabaWrapper.mm │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ └── InfoPlist.strings │ │ └── main.mm │ ├── MacSunabaTests │ │ ├── MacSunabaTests-Info.plist │ │ ├── MacSunabaTests.m │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ └── readme.txt ├── measureCodeAmount.sh ├── test │ ├── chinese │ │ ├── beIncluded.txt │ │ ├── comparison.txt │ │ ├── const.txt │ │ ├── constIndexAccess.txt │ │ ├── equal.txt │ │ ├── function.txt │ │ ├── if.txt │ │ ├── include.txt │ │ ├── memory.txt │ │ ├── recursion.txt │ │ └── while.txt │ ├── english │ │ ├── beIncluded.txt │ │ ├── comparison.txt │ │ ├── const.txt │ │ ├── constIndexAccess.txt │ │ ├── equal.txt │ │ ├── function.txt │ │ ├── if.txt │ │ ├── include.txt │ │ ├── memory.txt │ │ ├── recursion.txt │ │ └── while.txt │ ├── japanese │ │ ├── mainでの出力.txt │ │ ├── なかぎり.txt │ │ ├── なら.txt │ │ ├── イコール.txt │ │ ├── インデント多すぎ_エラーになるのが正しい.txt │ │ ├── コンパイル前演算.txt │ │ ├── ブロック内出力_エラーになるのが正しい.txt │ │ ├── ブロック内定数_エラーになるのが正しい.txt │ │ ├── メモリ.txt │ │ ├── 不定戻り値_エラーになるのが正しい.txt │ │ ├── 入力.txt │ │ ├── 再帰.txt │ │ ├── 出力からの読取.txt │ │ ├── 分岐内初期化変数_エラーになるのが正しい.txt │ │ ├── 定数.txt │ │ ├── 定数添字アクセス.txt │ │ ├── 挿入.txt │ │ ├── 挿入される.txt │ │ ├── 未初期化使用_エラーになるのが正しい.txt │ │ ├── 比較演算子.txt │ │ ├── 減算.txt │ │ ├── 複数行.txt │ │ ├── 部分プログラム事前定義.txt │ │ ├── 部分プログラム事後定義.txt │ │ └── 部分プログラム内定数_エラーになるのが正しい.txt │ └── korean │ │ ├── beIncluded.txt │ │ ├── comparison.txt │ │ ├── const.txt │ │ ├── constIndexAccess.txt │ │ ├── equal.txt │ │ ├── function.txt │ │ ├── if.txt │ │ ├── include.txt │ │ ├── memory.txt │ │ ├── recursion.txt │ │ └── while.txt └── 移植準備TODO.txt ├── style.css ├── web ├── dist │ └── main.js └── index.html ├── 中に入っているもの.txt └── 文書 ├── Sunabaの設計と実装.pdf ├── Sunaba上級ガイド.pdf ├── Sunaba入門-リバーシができるまで.pdf ├── Sunaba早見.pdf ├── プログラムはこうして作られるお試し版.pdf ├── 教育言語Sunaba.pdf ├── 私が本を書くことについて.pdf ├── 英語風Sunaba早見.pdf └── 講義資料 ├── 2010 ├── 九州大学100702.pdf ├── 九州大学100709.pdf └── 九州大学100723.pdf ├── 2011 ├── 九州大学110415.pdf └── 九州大学110422.pdf ├── 2012 ├── 九州大学120706.pdf ├── 九州大学120713.pdf └── 九州大学120727.pdf └── 2013 ├── sample ├── drawing.txt ├── drawingWithRect.txt ├── first.txt ├── line100.txt ├── square10x10.txt ├── square10x10UsingNamedMemory.txt ├── subProgram_horizontalLine.txt ├── subProgram_point.txt └── subProgram_rectangle.txt ├── 九州大学130412.pdf ├── 九州大学130419.pdf └── 九州大学130509.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/Sunaba/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/.vs/Sunaba/v17/.suo -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/README.md -------------------------------------------------------------------------------- /SunabaEnvForC/windows/SunabaEnvForC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaEnvForC/windows/SunabaEnvForC.h -------------------------------------------------------------------------------- /SunabaEnvForC/windows/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaEnvForC/windows/test/Makefile -------------------------------------------------------------------------------- /SunabaEnvForC/windows/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaEnvForC/windows/test/test.c -------------------------------------------------------------------------------- /SunabaEnvForC/windows/test/test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaEnvForC/windows/test/test.sln -------------------------------------------------------------------------------- /SunabaEnvForC/windows/test/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaEnvForC/windows/test/test.vcxproj -------------------------------------------------------------------------------- /SunabaEnvForC/windows/test/test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaEnvForC/windows/test/test.vcxproj.filters -------------------------------------------------------------------------------- /SunabaEnvForC/説明書.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaEnvForC/説明書.txt -------------------------------------------------------------------------------- /SunabaUnity/.gitignore: -------------------------------------------------------------------------------- 1 | debugOut 2 | *.zip 3 | Build 4 | -------------------------------------------------------------------------------- /SunabaUnity/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/.vscode/settings.json -------------------------------------------------------------------------------- /SunabaUnity/Assembly-CSharp-Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assembly-CSharp-Editor.csproj -------------------------------------------------------------------------------- /SunabaUnity/Assembly-CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assembly-CSharp.csproj -------------------------------------------------------------------------------- /SunabaUnity/Assets/DropHandlerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/DropHandlerWrapper.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/DropHandlerWrapper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/DropHandlerWrapper.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/B83.Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/B83.Win32.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/B83.Win32.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/B83.Win32.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/Info.plist.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/Info.plist.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/MacOS.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/MacOS/UniDragAndDrop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/MacOS/UniDragAndDrop -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/MacOS/UniDragAndDrop.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/MacOS/UniDragAndDrop.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/_CodeSignature.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/_CodeSignature.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/_CodeSignature/CodeResources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/Plugins/macOS/UniDragAndDrop.bundle/Contents/_CodeSignature/CodeResources.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/UniDragAndDrop.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UniDragAndDrop" 3 | } 4 | -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/UniDragAndDrop.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/UniDragAndDrop.asmdef.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/UniDragAndDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/UniDragAndDrop.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/UniDragAndDrop.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/ExternalAssets/UniDragAndDrop/UniDragAndDrop.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Main.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/Main.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Main.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Main.unity -------------------------------------------------------------------------------- /SunabaUnity/Assets/Main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Main.unity.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/SampleSceneProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/SampleSceneProfile.asset -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/SampleSceneProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/SampleSceneProfile.asset.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/URP-Balanced-Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/URP-Balanced-Renderer.asset -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/URP-Balanced-Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/URP-Balanced-Renderer.asset.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/URP-Balanced.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/URP-Balanced.asset -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/URP-Balanced.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/URP-Balanced.asset.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/URP-HighFidelity-Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/URP-HighFidelity-Renderer.asset -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/URP-HighFidelity-Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/URP-HighFidelity-Renderer.asset.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/URP-HighFidelity.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/URP-HighFidelity.asset -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/URP-HighFidelity.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/URP-HighFidelity.asset.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/URP-Performant-Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/URP-Performant-Renderer.asset -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/URP-Performant-Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/URP-Performant-Renderer.asset.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/URP-Performant.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/URP-Performant.asset -------------------------------------------------------------------------------- /SunabaUnity/Assets/Settings/URP-Performant.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/Settings/URP-Performant.asset.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SoundSynthesizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SoundSynthesizer.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SoundSynthesizer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SoundSynthesizer.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SpectrumViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SpectrumViewer.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SpectrumViewer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SpectrumViewer.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Assembler.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Assembler.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Assembler/Assembler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Assembler/Assembler.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Assembler/Assembler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Assembler/Assembler.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/CodeGenerator.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/CodeGenerator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/CodeGenerator.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/Compiler.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/Compiler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/Compiler.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/Concatenator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/Concatenator.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/Concatenator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/Concatenator.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/FunctionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/FunctionGenerator.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/FunctionGenerator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/FunctionGenerator.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/FunctionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/FunctionInfo.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/FunctionInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/FunctionInfo.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/LexicalAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/LexicalAnalyzer.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/LexicalAnalyzer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/LexicalAnalyzer.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/Node.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/Node.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/Node.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/Parser.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/Parser.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/Parser.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/Structurizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/Structurizer.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/Structurizer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/Structurizer.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/Token.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Compiler/Token.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Compiler/Token.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Localization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Localization.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Localization.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Localization.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Machine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Machine.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Machine/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Machine/Instruction.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Machine/Instruction.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Machine/Instruction.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Machine/IoState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Machine/IoState.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Machine/IoState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Machine/IoState.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Machine/Machine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Machine/Machine.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Machine/Machine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Machine/Machine.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Proprosessor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Proprosessor.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Proprosessor/CharacterReplacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Proprosessor/CharacterReplacer.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Proprosessor/CharacterReplacer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Proprosessor/CharacterReplacer.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Proprosessor/CommentRemover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Proprosessor/CommentRemover.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Proprosessor/CommentRemover.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Proprosessor/CommentRemover.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Proprosessor/TabProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Proprosessor/TabProcessor.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Proprosessor/TabProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Proprosessor/TabProcessor.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/SunabaEngine.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SunabaEngine" 3 | } 4 | -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/SunabaEngine.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/SunabaEngine.asmdef.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Utility.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/SunabaEngine/Utility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/SunabaEngine/Utility.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/TutorialInfo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/TutorialInfo.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/TutorialInfo/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/TutorialInfo/Icons.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/TutorialInfo/Icons/URP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/TutorialInfo/Icons/URP.png -------------------------------------------------------------------------------- /SunabaUnity/Assets/TutorialInfo/Icons/URP.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/TutorialInfo/Icons/URP.png.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/TutorialInfo/Layout.wlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/TutorialInfo/Layout.wlt -------------------------------------------------------------------------------- /SunabaUnity/Assets/TutorialInfo/Layout.wlt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/TutorialInfo/Layout.wlt.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/TutorialInfo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/TutorialInfo/Scripts.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/TutorialInfo/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/TutorialInfo/Scripts/Editor.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/TutorialInfo/Scripts/Readme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/TutorialInfo/Scripts/Readme.cs -------------------------------------------------------------------------------- /SunabaUnity/Assets/TutorialInfo/Scripts/Readme.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/TutorialInfo/Scripts/Readme.cs.meta -------------------------------------------------------------------------------- /SunabaUnity/Assets/UniversalRenderPipelineGlobalSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/UniversalRenderPipelineGlobalSettings.asset -------------------------------------------------------------------------------- /SunabaUnity/Assets/UniversalRenderPipelineGlobalSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Assets/UniversalRenderPipelineGlobalSettings.asset.meta -------------------------------------------------------------------------------- /SunabaUnity/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Packages/manifest.json -------------------------------------------------------------------------------- /SunabaUnity/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/Packages/packages-lock.json -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/BurstAotSettings_Android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/BurstAotSettings_Android.json -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/BurstAotSettings_StandaloneOSX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/BurstAotSettings_StandaloneOSX.json -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/BurstAotSettings_iOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/BurstAotSettings_iOS.json -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /SunabaUnity/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SunabaUnity/SunabaEngine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/SunabaEngine.csproj -------------------------------------------------------------------------------- /SunabaUnity/SunabaUnity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/SunabaUnity.sln -------------------------------------------------------------------------------- /SunabaUnity/UniDragAndDrop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/UniDragAndDrop.csproj -------------------------------------------------------------------------------- /SunabaUnity/UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /SunabaUnity/UserSettings/Layouts/default-2021.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/UserSettings/Layouts/default-2021.dwlt -------------------------------------------------------------------------------- /SunabaUnity/UserSettings/Search.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/UserSettings/Search.index -------------------------------------------------------------------------------- /SunabaUnity/UserSettings/Search.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/UserSettings/Search.settings -------------------------------------------------------------------------------- /SunabaUnity/draw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/draw.txt -------------------------------------------------------------------------------- /SunabaUnity/memory.txt: -------------------------------------------------------------------------------- 1 | memory[65050] -> 990000 2 | -------------------------------------------------------------------------------- /SunabaUnity/theGame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/theGame.txt -------------------------------------------------------------------------------- /SunabaUnity/theGame2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaUnity/theGame2.txt -------------------------------------------------------------------------------- /SunabaWeb/SunabaMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaWeb/SunabaMain.js -------------------------------------------------------------------------------- /SunabaWeb/assemblerTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaWeb/assemblerTest.txt -------------------------------------------------------------------------------- /SunabaWeb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/SunabaWeb/index.html -------------------------------------------------------------------------------- /dist/sunaba_mac_200210517.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/dist/sunaba_mac_200210517.zip -------------------------------------------------------------------------------- /dist/sunaba_windows11_20220402.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/dist/sunaba_windows11_20220402.zip -------------------------------------------------------------------------------- /dist/sunaba_windows_20210518.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/dist/sunaba_windows_20210518.zip -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/index.html -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/algorithm.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/error.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/graphics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/graphics.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/input.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/ioMap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/ioMap.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/memory.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/music.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/music.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/sample/2dPhysics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/sample/2dPhysics.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/sample/drawing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/sample/drawing.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/sample/music.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/sample/music.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/system.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/test/テスト.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/test/テスト.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/utility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/utility.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/library/vector2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/library/vector2.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/simpleDrawing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/simpleDrawing.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/subProgram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/subProgram.txt -------------------------------------------------------------------------------- /samples/Sunaba上級ガイドサンプル/textOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/Sunaba上級ガイドサンプル/textOutput.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/00_不要部分削除.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/00_不要部分削除.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/01_底の隣で止まる.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/01_底の隣で止まる.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/02_左右移動復活.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/02_左右移動復活.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/03_壁の隣で止まる0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/03_壁の隣で止まる0.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/04_壁の隣で止まる1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/04_壁の隣で止まる1.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/05_底の隣で止めて白く.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/05_底の隣で止めて白く.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/06_落ちたら戻る.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/06_落ちたら戻る.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/07_底以外に当たる.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/07_底以外に当たる.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/08_底以外に当たる整理.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/08_底以外に当たる整理.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/09_積もるし壁に当たる.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/09_積もるし壁に当たる.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/10_積もるし左右からも当たる.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/10_積もるし左右からも当たる.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/11_積もるし左右からも当たる整理0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/11_積もるし左右からも当たる整理0.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/12_積もるし左右からも当たる整理1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/12_積もるし左右からも当たる整理1.txt -------------------------------------------------------------------------------- /samples/サンプル/10章/13_10章集大成.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/10章/13_10章集大成.txt -------------------------------------------------------------------------------- /samples/サンプル/11章/00_消えるだけ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/11章/00_消えるだけ.txt -------------------------------------------------------------------------------- /samples/サンプル/11章/01_消えるだけテスト用.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/11章/01_消えるだけテスト用.txt -------------------------------------------------------------------------------- /samples/サンプル/11章/02_消えるだけテスト用整理版.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/11章/02_消えるだけテスト用整理版.txt -------------------------------------------------------------------------------- /samples/サンプル/11章/03_落ちない.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/11章/03_落ちない.txt -------------------------------------------------------------------------------- /samples/サンプル/11章/04_十字に四角.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/11章/04_十字に四角.txt -------------------------------------------------------------------------------- /samples/サンプル/11章/05_十字に四角_わかりにくい.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/11章/05_十字に四角_わかりにくい.txt -------------------------------------------------------------------------------- /samples/サンプル/11章/06_部分プログラムへの入力例.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/11章/06_部分プログラムへの入力例.txt -------------------------------------------------------------------------------- /samples/サンプル/11章/07_消えるだけ入力使用.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/11章/07_消えるだけ入力使用.txt -------------------------------------------------------------------------------- /samples/サンプル/11章/08_消えた後1マス落ちる.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/11章/08_消えた後1マス落ちる.txt -------------------------------------------------------------------------------- /samples/サンプル/11章/09_消えた後1マス落ちる_たくさん積んでおく.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/11章/09_消えた後1マス落ちる_たくさん積んでおく.txt -------------------------------------------------------------------------------- /samples/サンプル/11章/10_消えて落ちる_テスト付き.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/11章/10_消えて落ちる_テスト付き.txt -------------------------------------------------------------------------------- /samples/サンプル/11章/11_消えて落ちる_別解.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/11章/11_消えて落ちる_別解.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/00_とりあえず2つ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/00_とりあえず2つ.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/01_回転準備.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/01_回転準備.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/02_回転準備一つ下へ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/02_回転準備一つ下へ.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/03_とりあえず回った状態に.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/03_とりあえず回った状態に.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/04_馬鹿正直に一周回す.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/04_馬鹿正直に一周回す.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/05_賢く回す.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/05_賢く回す.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/06_とりあえず2つ_整理0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/06_とりあえず2つ_整理0.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/07_とりあえず2つ_整理1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/07_とりあえず2つ_整理1.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/08_とりあえず2つ_整理2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/08_とりあえず2つ_整理2.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/09_とりあえず2つ_整理3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/09_とりあえず2つ_整理3.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/10_とりあえず2つ_整理4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/10_とりあえず2つ_整理4.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/11_回転組み込み準備.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/11_回転組み込み準備.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/12_回転を組み込んだが.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/12_回転を組み込んだが.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/13_回転完成.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/13_回転完成.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/14_正しく消せる.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/14_正しく消せる.txt -------------------------------------------------------------------------------- /samples/サンプル/12章/15_12章集大成.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/12章/15_12章集大成.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/00_とりあえず3マス.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/00_とりあえず3マス.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/01_3マス2種類_間違い入り.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/01_3マス2種類_間違い入り.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/02_3マス2種類.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/02_3マス2種類.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/03_3マスを馬鹿正直に回す.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/03_3マスを馬鹿正直に回す.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/04_3マスを馬鹿正直に回す_改良0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/04_3マスを馬鹿正直に回す_改良0.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/05_3マスを馬鹿正直に回す_改良1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/05_3マスを馬鹿正直に回す_改良1.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/06_3マスを回す.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/06_3マスを回す.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/07_3マスを逆に回す.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/07_3マスを逆に回す.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/08_とりあえず4マス.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/08_とりあえず4マス.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/09_4マスを回す.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/09_4マスを回す.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/10_4マスを回す_表は半分.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/10_4マスを回す_表は半分.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/11_4マスを回す_表は半分で整理.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/11_4マスを回す_表は半分で整理.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/12_完成.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/12_完成.txt -------------------------------------------------------------------------------- /samples/サンプル/13章/13_余り.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/13章/13_余り.txt -------------------------------------------------------------------------------- /samples/サンプル/14章/お手本JavaScript版.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/14章/お手本JavaScript版.html -------------------------------------------------------------------------------- /samples/サンプル/14章/お手本英語風.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/14章/お手本英語風.txt -------------------------------------------------------------------------------- /samples/サンプル/2章/00_最初のプログラム.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/2章/00_最初のプログラム.txt -------------------------------------------------------------------------------- /samples/サンプル/2章/01_体重と身長.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/2章/01_体重と身長.txt -------------------------------------------------------------------------------- /samples/サンプル/2章/02_初めての四角.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/2章/02_初めての四角.txt -------------------------------------------------------------------------------- /samples/サンプル/2章/03_白黒写真.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/2章/03_白黒写真.txt -------------------------------------------------------------------------------- /samples/サンプル/2章/04_カラー写真.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/2章/04_カラー写真.txt -------------------------------------------------------------------------------- /samples/サンプル/2章/05_上端真ん中に四角.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/2章/05_上端真ん中に四角.txt -------------------------------------------------------------------------------- /samples/サンプル/2章/06_真ん中に四角.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/2章/06_真ん中に四角.txt -------------------------------------------------------------------------------- /samples/サンプル/2章/元画像/カラー写真.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/2章/元画像/カラー写真.bmp -------------------------------------------------------------------------------- /samples/サンプル/2章/元画像/白黒写真.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/2章/元画像/白黒写真.bmp -------------------------------------------------------------------------------- /samples/サンプル/3章/00_はじめてのくり返し.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/3章/00_はじめてのくり返し.txt -------------------------------------------------------------------------------- /samples/サンプル/3章/01_16回点を塗る.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/3章/01_16回点を塗る.txt -------------------------------------------------------------------------------- /samples/サンプル/3章/02_16個点を塗る.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/3章/02_16個点を塗る.txt -------------------------------------------------------------------------------- /samples/サンプル/3章/03_短く16個点を塗る.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/3章/03_短く16個点を塗る.txt -------------------------------------------------------------------------------- /samples/サンプル/3章/04_4回くり返して四角.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/3章/04_4回くり返して四角.txt -------------------------------------------------------------------------------- /samples/サンプル/3章/05_くり返しで四角0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/3章/05_くり返しで四角0.txt -------------------------------------------------------------------------------- /samples/サンプル/3章/06_くり返しで四角1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/3章/06_くり返しで四角1.txt -------------------------------------------------------------------------------- /samples/サンプル/3章/07_くり返しで四角完成.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/3章/07_くり返しで四角完成.txt -------------------------------------------------------------------------------- /samples/サンプル/3章/08_変なメモリを使ってくり返しで四角.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/3章/08_変なメモリを使ってくり返しで四角.txt -------------------------------------------------------------------------------- /samples/サンプル/3章/09_画面塗りつぶし.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/3章/09_画面塗りつぶし.txt -------------------------------------------------------------------------------- /samples/サンプル/3章/10_真ん中にくり返しで四角.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/3章/10_真ん中にくり返しで四角.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/00_四角を20回描く.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/00_四角を20回描く.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/01_無視される空白.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/01_無視される空白.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/02_四角を20個描く.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/02_四角を20個描く.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/03_右の壁.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/03_右の壁.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/04_底.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/04_底.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/05_素直に壁と底.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/05_素直に壁と底.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/06_左右くり返し統合0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/06_左右くり返し統合0.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/07_左右くり返し統合1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/07_左右くり返し統合1.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/08_左右くり返し統合2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/08_左右くり返し統合2.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/09_左右くり返し統合3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/09_左右くり返し統合3.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/10_壁と底左右のみ統合.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/10_壁と底左右のみ統合.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/11_壁と底くり返し順序変更.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/11_壁と底くり返し順序変更.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/12_壁と底くり返し統合0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/12_壁と底くり返し統合0.txt -------------------------------------------------------------------------------- /samples/サンプル/4章/13_壁と底くり返し統合済み.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/4章/13_壁と底くり返し統合済み.txt -------------------------------------------------------------------------------- /samples/サンプル/5章/00_参照使用前.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/5章/00_参照使用前.txt -------------------------------------------------------------------------------- /samples/サンプル/5章/01_はじめての参照.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/5章/01_はじめての参照.txt -------------------------------------------------------------------------------- /samples/サンプル/5章/02_はじめての参照逆順.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/5章/02_はじめての参照逆順.txt -------------------------------------------------------------------------------- /samples/サンプル/5章/03_部分プログラムで違う点.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/5章/03_部分プログラムで違う点.txt -------------------------------------------------------------------------------- /samples/サンプル/5章/04_部分プログラムで底.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/5章/04_部分プログラムで底.txt -------------------------------------------------------------------------------- /samples/サンプル/5章/05_部分プログラムで壁と底.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/5章/05_部分プログラムで壁と底.txt -------------------------------------------------------------------------------- /samples/サンプル/5章/06_もっと部分プログラムで壁と底.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/5章/06_もっと部分プログラムで壁と底.txt -------------------------------------------------------------------------------- /samples/サンプル/5章/07_新しい四角.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/5章/07_新しい四角.txt -------------------------------------------------------------------------------- /samples/サンプル/5章/08_わかりやすく壁と底.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/5章/08_わかりやすく壁と底.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/00_点一つ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/00_点一つ.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/01_点二つ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/01_点二つ.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/02_点が一歩動く.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/02_点が一歩動く.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/03_点が三歩動く.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/03_点が三歩動く.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/04_点百個.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/04_点百個.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/05_点が下まで動く.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/05_点が下まで動く.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/06_部分プログラム四角.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/06_部分プログラム四角.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/07_四角が落ちるはずだが.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/07_四角が落ちるはずだが.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/08_四角が落ちる0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/08_四角が落ちる0.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/09_四角が落ちる1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/09_四角が落ちる1.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/10_四角が落ちる2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/10_四角が落ちる2.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/11_四角が落ちる3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/11_四角が落ちる3.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/12_四角が高速に落ちるはず.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/12_四角が高速に落ちるはず.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/13_四角が高速に落ちる.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/13_四角が高速に落ちる.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/14_四角が高速に落ちるはずなのに.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/14_四角が高速に落ちるはずなのに.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/15_壁と底がある中落ちる0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/15_壁と底がある中落ちる0.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/16_壁と底がある中落ちる1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/16_壁と底がある中落ちる1.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/17_壁と底がある中落ちる2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/17_壁と底がある中落ちる2.txt -------------------------------------------------------------------------------- /samples/サンプル/6章/18_壁と底がある中落ちる完成.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/6章/18_壁と底がある中落ちる完成.txt -------------------------------------------------------------------------------- /samples/サンプル/7章/00_名前付きメモリ使用.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/7章/00_名前付きメモリ使用.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/00_左キーに反応0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/00_左キーに反応0.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/01_左キーに反応1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/01_左キーに反応1.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/02_左キーに反応2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/02_左キーに反応2.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/03_下に動かす.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/03_下に動かす.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/04_下に動かす手加減オフ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/04_下に動かす手加減オフ.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/05_上下に動かす.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/05_上下に動かす.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/06_上下左右に動かす.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/06_上下左右に動かす.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/07_四角を上下左右に動かす.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/07_四角を上下左右に動かす.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/08_右に動かす.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/08_右に動かす.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/09_一回だけ右0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/09_一回だけ右0.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/10_一回だけ右1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/10_一回だけ右1.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/11_一回だけ上下左右.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/11_一回だけ上下左右.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/12_一回だけ上下左右改.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/12_一回だけ上下左右改.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/13_一回だけ上下左右アルファベット.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/13_一回だけ上下左右アルファベット.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/14_一回だけ四角を上下左右.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/14_一回だけ四角を上下左右.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/15_背景付きで左右移動.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/15_背景付きで左右移動.txt -------------------------------------------------------------------------------- /samples/サンプル/8章/16_背景落下付き左右移動.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/8章/16_背景落下付き左右移動.txt -------------------------------------------------------------------------------- /samples/サンプル/9章/00_横線0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/00_横線0.txt -------------------------------------------------------------------------------- /samples/サンプル/9章/01_横線1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/01_横線1.txt -------------------------------------------------------------------------------- /samples/サンプル/9章/02_横線2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/02_横線2.txt -------------------------------------------------------------------------------- /samples/サンプル/9章/03_横線3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/03_横線3.txt -------------------------------------------------------------------------------- /samples/サンプル/9章/04_くり返しで実行するしない0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/04_くり返しで実行するしない0.txt -------------------------------------------------------------------------------- /samples/サンプル/9章/05_くり返しで実行するしない1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/05_くり返しで実行するしない1.txt -------------------------------------------------------------------------------- /samples/サンプル/9章/06_赤か緑.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/06_赤か緑.txt -------------------------------------------------------------------------------- /samples/サンプル/9章/07_赤か緑_条件実行版.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/07_赤か緑_条件実行版.txt -------------------------------------------------------------------------------- /samples/サンプル/9章/07_赤か緑_条件実行版.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/07_赤か緑_条件実行版.txt~ -------------------------------------------------------------------------------- /samples/サンプル/9章/08_条件実行で横線.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/08_条件実行で横線.txt -------------------------------------------------------------------------------- /samples/サンプル/9章/09_条件実行で四角が遅く落ちてくる.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/09_条件実行で四角が遅く落ちてくる.txt -------------------------------------------------------------------------------- /samples/サンプル/9章/09_条件実行で四角が遅く落ちてくる.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/09_条件実行で四角が遅く落ちてくる.txt~ -------------------------------------------------------------------------------- /samples/サンプル/9章/10_9章集大成.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/10_9章集大成.txt -------------------------------------------------------------------------------- /samples/サンプル/9章/10_9章集大成.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/9章/10_9章集大成.txt~ -------------------------------------------------------------------------------- /samples/サンプル/お手本.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/お手本.txt -------------------------------------------------------------------------------- /samples/サンプル/お手本豪華版.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/サンプル/お手本豪華版.txt -------------------------------------------------------------------------------- /samples/リバーシサンプル/リバーシお手本.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/リバーシサンプル/リバーシお手本.txt -------------------------------------------------------------------------------- /samples/リバーシサンプル/三目並べお手本.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/samples/リバーシサンプル/三目並べお手本.txt -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | obj/ 2 | .vs/ 3 | -------------------------------------------------------------------------------- /src/Sunaba.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/Sunaba.sln -------------------------------------------------------------------------------- /src/Sunaba/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/Sunaba/Form1.Designer.cs -------------------------------------------------------------------------------- /src/Sunaba/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/Sunaba/Form1.cs -------------------------------------------------------------------------------- /src/Sunaba/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/Sunaba/Form1.resx -------------------------------------------------------------------------------- /src/Sunaba/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/Sunaba/Program.cs -------------------------------------------------------------------------------- /src/Sunaba/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/Sunaba/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Sunaba/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/Sunaba/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Sunaba/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/Sunaba/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Sunaba/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/Sunaba/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Sunaba/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/Sunaba/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Sunaba/Sunaba.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/Sunaba/Sunaba.csproj -------------------------------------------------------------------------------- /src/Sunaba/Sunaba.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/Sunaba/Sunaba.csproj.user -------------------------------------------------------------------------------- /src/Sunaba/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/Sunaba/app.config -------------------------------------------------------------------------------- /src/SunabaLib/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/SunabaLib/AssemblyInfo.cpp -------------------------------------------------------------------------------- /src/SunabaLib/SunabaLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/SunabaLib/SunabaLib.cpp -------------------------------------------------------------------------------- /src/SunabaLib/SunabaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/SunabaLib/SunabaLib.h -------------------------------------------------------------------------------- /src/SunabaLib/SunabaLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/SunabaLib/SunabaLib.vcproj -------------------------------------------------------------------------------- /src/SunabaLib/SunabaLib.vcproj.AMDT.HirayamaT2.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/SunabaLib/SunabaLib.vcproj.AMDT.HirayamaT2.user -------------------------------------------------------------------------------- /src/SunabaLib/SunabaLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/SunabaLib/SunabaLib.vcxproj -------------------------------------------------------------------------------- /src/SunabaLib/SunabaLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/SunabaLib/SunabaLib.vcxproj.filters -------------------------------------------------------------------------------- /src/SunabaLib/SunabaLib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/SunabaLib/SunabaLib.vcxproj.user -------------------------------------------------------------------------------- /src/SunabaLib/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/SunabaLib/app.ico -------------------------------------------------------------------------------- /src/SunabaLib/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/SunabaLib/app.rc -------------------------------------------------------------------------------- /src/SunabaLib/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/SunabaLib/resource.h -------------------------------------------------------------------------------- /src/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/clean.sh -------------------------------------------------------------------------------- /src/cpp/Base/mac/Os.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/cpp/Base/mac/Os.mm -------------------------------------------------------------------------------- /src/cpp/Base/pc/Os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/cpp/Base/pc/Os.cpp -------------------------------------------------------------------------------- /src/cpp/Graphics/mac/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/cpp/Graphics/mac/Graphics.cpp -------------------------------------------------------------------------------- /src/cpp/Graphics/pc/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/cpp/Graphics/pc/Graphics.cpp -------------------------------------------------------------------------------- /src/cpp/Sound/mac/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/cpp/Sound/mac/Sound.cpp -------------------------------------------------------------------------------- /src/cpp/Sound/pc/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/cpp/Sound/pc/Sound.cpp -------------------------------------------------------------------------------- /src/include/Base/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/Array.h -------------------------------------------------------------------------------- /src/include/Base/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/Base.h -------------------------------------------------------------------------------- /src/include/Base/MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/MemoryPool.h -------------------------------------------------------------------------------- /src/include/Base/Os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/Os.h -------------------------------------------------------------------------------- /src/include/Base/RefString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/RefString.h -------------------------------------------------------------------------------- /src/include/Base/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/String.h -------------------------------------------------------------------------------- /src/include/Base/Tank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/Tank.h -------------------------------------------------------------------------------- /src/include/Base/TextFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/TextFile.h -------------------------------------------------------------------------------- /src/include/Base/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/Utility.h -------------------------------------------------------------------------------- /src/include/Base/inc/Array.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/inc/Array.inc.h -------------------------------------------------------------------------------- /src/include/Base/inc/MemoryPool.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/inc/MemoryPool.inc.h -------------------------------------------------------------------------------- /src/include/Base/inc/RefString.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/inc/RefString.inc.h -------------------------------------------------------------------------------- /src/include/Base/inc/String.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/inc/String.inc.h -------------------------------------------------------------------------------- /src/include/Base/inc/Tank.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/inc/Tank.inc.h -------------------------------------------------------------------------------- /src/include/Base/inc/TextFile.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/inc/TextFile.inc.h -------------------------------------------------------------------------------- /src/include/Base/inc/Utility.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Base/inc/Utility.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/Assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/Assembler.h -------------------------------------------------------------------------------- /src/include/Compiler/CharacterReplacer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/CharacterReplacer.h -------------------------------------------------------------------------------- /src/include/Compiler/CodeGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/CodeGenerator.h -------------------------------------------------------------------------------- /src/include/Compiler/CommentRemover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/CommentRemover.h -------------------------------------------------------------------------------- /src/include/Compiler/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/Compiler.h -------------------------------------------------------------------------------- /src/include/Compiler/Concatenator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/Concatenator.h -------------------------------------------------------------------------------- /src/include/Compiler/FunctionGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/FunctionGenerator.h -------------------------------------------------------------------------------- /src/include/Compiler/FunctionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/FunctionInfo.h -------------------------------------------------------------------------------- /src/include/Compiler/LexicalAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/LexicalAnalyzer.h -------------------------------------------------------------------------------- /src/include/Compiler/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/Node.h -------------------------------------------------------------------------------- /src/include/Compiler/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/Parser.h -------------------------------------------------------------------------------- /src/include/Compiler/Structurizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/Structurizer.h -------------------------------------------------------------------------------- /src/include/Compiler/TabProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/TabProcessor.h -------------------------------------------------------------------------------- /src/include/Compiler/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/Token.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/Assembler.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/Assembler.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/CharacterReplacer.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/CharacterReplacer.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/CodeGenerator.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/CodeGenerator.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/CommentRemover.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/CommentRemover.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/Compiler.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/Compiler.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/Concatenator.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/Concatenator.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/FunctionGenerator.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/FunctionGenerator.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/FunctionInfo.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/FunctionInfo.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/LexicalAnalyzer.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/LexicalAnalyzer.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/Node.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/Node.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/Parser.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/Parser.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/Structurizer.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/Structurizer.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/TabProcessor.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/TabProcessor.inc.h -------------------------------------------------------------------------------- /src/include/Compiler/inc/Token.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Compiler/inc/Token.inc.h -------------------------------------------------------------------------------- /src/include/Graphics/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Graphics/Graphics.h -------------------------------------------------------------------------------- /src/include/Localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Localization.h -------------------------------------------------------------------------------- /src/include/Machine/Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Machine/Instruction.h -------------------------------------------------------------------------------- /src/include/Machine/IoState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Machine/IoState.h -------------------------------------------------------------------------------- /src/include/Machine/Machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Machine/Machine.h -------------------------------------------------------------------------------- /src/include/Machine/inc/Instruction.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Machine/inc/Instruction.inc.h -------------------------------------------------------------------------------- /src/include/Machine/inc/IoState.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Machine/inc/IoState.inc.h -------------------------------------------------------------------------------- /src/include/Machine/inc/Machine.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Machine/inc/Machine.inc.h -------------------------------------------------------------------------------- /src/include/Sound/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Sound/Sound.h -------------------------------------------------------------------------------- /src/include/Sound/SoundChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/Sound/SoundChannel.h -------------------------------------------------------------------------------- /src/include/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/System.h -------------------------------------------------------------------------------- /src/include/inc/Localization.chinese.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/inc/Localization.chinese.inc.h -------------------------------------------------------------------------------- /src/include/inc/Localization.japanese.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/inc/Localization.japanese.inc.h -------------------------------------------------------------------------------- /src/include/inc/Localization.korean.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/inc/Localization.korean.inc.h -------------------------------------------------------------------------------- /src/include/inc/System.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/include/inc/System.inc.h -------------------------------------------------------------------------------- /src/mac/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/.gitignore -------------------------------------------------------------------------------- /src/mac/MacSunaba.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /src/mac/MacSunaba.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /src/mac/MacSunaba.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /src/mac/MacSunaba.xcodeproj/project.xcworkspace/xcuserdata/hirayama-takashi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba.xcodeproj/project.xcworkspace/xcuserdata/hirayama-takashi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /src/mac/MacSunaba.xcodeproj/project.xcworkspace/xcuserdata/hirayama-takashi.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba.xcodeproj/project.xcworkspace/xcuserdata/hirayama-takashi.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /src/mac/MacSunaba.xcodeproj/xcuserdata/hirayama-takashi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba.xcodeproj/xcuserdata/hirayama-takashi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /src/mac/MacSunaba.xcodeproj/xcuserdata/hirayama-takashi.xcuserdatad/xcschemes/MacSunaba.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba.xcodeproj/xcuserdata/hirayama-takashi.xcuserdatad/xcschemes/MacSunaba.xcscheme -------------------------------------------------------------------------------- /src/mac/MacSunaba.xcodeproj/xcuserdata/hirayama-takashi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba.xcodeproj/xcuserdata/hirayama-takashi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /src/mac/MacSunaba/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/AppDelegate.h -------------------------------------------------------------------------------- /src/mac/MacSunaba/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/AppDelegate.mm -------------------------------------------------------------------------------- /src/mac/MacSunaba/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /src/mac/MacSunaba/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /src/mac/MacSunaba/MacSunaba-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/MacSunaba-Info.plist -------------------------------------------------------------------------------- /src/mac/MacSunaba/MyController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/MyController.h -------------------------------------------------------------------------------- /src/mac/MacSunaba/MyController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/MyController.m -------------------------------------------------------------------------------- /src/mac/MacSunaba/MyGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/MyGLView.h -------------------------------------------------------------------------------- /src/mac/MacSunaba/MyGLView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/MyGLView.mm -------------------------------------------------------------------------------- /src/mac/MacSunaba/MyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/MyView.h -------------------------------------------------------------------------------- /src/mac/MacSunaba/MyView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/MyView.mm -------------------------------------------------------------------------------- /src/mac/MacSunaba/SunabaWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/SunabaWrapper.h -------------------------------------------------------------------------------- /src/mac/MacSunaba/SunabaWrapper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/SunabaWrapper.mm -------------------------------------------------------------------------------- /src/mac/MacSunaba/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /src/mac/MacSunaba/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /src/mac/MacSunaba/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunaba/main.mm -------------------------------------------------------------------------------- /src/mac/MacSunabaTests/MacSunabaTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunabaTests/MacSunabaTests-Info.plist -------------------------------------------------------------------------------- /src/mac/MacSunabaTests/MacSunabaTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/MacSunabaTests/MacSunabaTests.m -------------------------------------------------------------------------------- /src/mac/MacSunabaTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /src/mac/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/mac/readme.txt -------------------------------------------------------------------------------- /src/measureCodeAmount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/measureCodeAmount.sh -------------------------------------------------------------------------------- /src/test/chinese/beIncluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/chinese/beIncluded.txt -------------------------------------------------------------------------------- /src/test/chinese/comparison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/chinese/comparison.txt -------------------------------------------------------------------------------- /src/test/chinese/const.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/chinese/const.txt -------------------------------------------------------------------------------- /src/test/chinese/constIndexAccess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/chinese/constIndexAccess.txt -------------------------------------------------------------------------------- /src/test/chinese/equal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/chinese/equal.txt -------------------------------------------------------------------------------- /src/test/chinese/function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/chinese/function.txt -------------------------------------------------------------------------------- /src/test/chinese/if.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/chinese/if.txt -------------------------------------------------------------------------------- /src/test/chinese/include.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/chinese/include.txt -------------------------------------------------------------------------------- /src/test/chinese/memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/chinese/memory.txt -------------------------------------------------------------------------------- /src/test/chinese/recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/chinese/recursion.txt -------------------------------------------------------------------------------- /src/test/chinese/while.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/chinese/while.txt -------------------------------------------------------------------------------- /src/test/english/beIncluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/english/beIncluded.txt -------------------------------------------------------------------------------- /src/test/english/comparison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/english/comparison.txt -------------------------------------------------------------------------------- /src/test/english/const.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/english/const.txt -------------------------------------------------------------------------------- /src/test/english/constIndexAccess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/english/constIndexAccess.txt -------------------------------------------------------------------------------- /src/test/english/equal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/english/equal.txt -------------------------------------------------------------------------------- /src/test/english/function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/english/function.txt -------------------------------------------------------------------------------- /src/test/english/if.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/english/if.txt -------------------------------------------------------------------------------- /src/test/english/include.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/english/include.txt -------------------------------------------------------------------------------- /src/test/english/memory.txt: -------------------------------------------------------------------------------- 1 | memory[65050] -> 990000 2 | -------------------------------------------------------------------------------- /src/test/english/recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/english/recursion.txt -------------------------------------------------------------------------------- /src/test/english/while.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/english/while.txt -------------------------------------------------------------------------------- /src/test/japanese/mainでの出力.txt: -------------------------------------------------------------------------------- 1 | 出力 → 4 2 | -------------------------------------------------------------------------------- /src/test/japanese/なかぎり.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/なかぎり.txt -------------------------------------------------------------------------------- /src/test/japanese/なら.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/なら.txt -------------------------------------------------------------------------------- /src/test/japanese/イコール.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/イコール.txt -------------------------------------------------------------------------------- /src/test/japanese/インデント多すぎ_エラーになるのが正しい.txt: -------------------------------------------------------------------------------- 1 | あ → 5 2 | -------------------------------------------------------------------------------- /src/test/japanese/コンパイル前演算.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/コンパイル前演算.txt -------------------------------------------------------------------------------- /src/test/japanese/ブロック内出力_エラーになるのが正しい.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/ブロック内出力_エラーになるのが正しい.txt -------------------------------------------------------------------------------- /src/test/japanese/ブロック内定数_エラーになるのが正しい.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/ブロック内定数_エラーになるのが正しい.txt -------------------------------------------------------------------------------- /src/test/japanese/メモリ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/メモリ.txt -------------------------------------------------------------------------------- /src/test/japanese/不定戻り値_エラーになるのが正しい.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/不定戻り値_エラーになるのが正しい.txt -------------------------------------------------------------------------------- /src/test/japanese/入力.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/入力.txt -------------------------------------------------------------------------------- /src/test/japanese/再帰.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/再帰.txt -------------------------------------------------------------------------------- /src/test/japanese/出力からの読取.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/出力からの読取.txt -------------------------------------------------------------------------------- /src/test/japanese/分岐内初期化変数_エラーになるのが正しい.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/分岐内初期化変数_エラーになるのが正しい.txt -------------------------------------------------------------------------------- /src/test/japanese/定数.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/定数.txt -------------------------------------------------------------------------------- /src/test/japanese/定数添字アクセス.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/定数添字アクセス.txt -------------------------------------------------------------------------------- /src/test/japanese/挿入.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/挿入.txt -------------------------------------------------------------------------------- /src/test/japanese/挿入される.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/挿入される.txt -------------------------------------------------------------------------------- /src/test/japanese/未初期化使用_エラーになるのが正しい.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/未初期化使用_エラーになるのが正しい.txt -------------------------------------------------------------------------------- /src/test/japanese/比較演算子.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/比較演算子.txt -------------------------------------------------------------------------------- /src/test/japanese/減算.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/減算.txt -------------------------------------------------------------------------------- /src/test/japanese/複数行.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/複数行.txt -------------------------------------------------------------------------------- /src/test/japanese/部分プログラム事前定義.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/部分プログラム事前定義.txt -------------------------------------------------------------------------------- /src/test/japanese/部分プログラム事後定義.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/japanese/部分プログラム事後定義.txt -------------------------------------------------------------------------------- /src/test/japanese/部分プログラム内定数_エラーになるのが正しい.txt: -------------------------------------------------------------------------------- 1 | あ() とは 2 | 定数 重力 → 9800 3 | 4 | あ() 5 | -------------------------------------------------------------------------------- /src/test/korean/beIncluded.txt: -------------------------------------------------------------------------------- 1 | do(a, b, c, d) 정의 2 | 출력 -> a + b + c + d 3 | -------------------------------------------------------------------------------- /src/test/korean/comparison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/korean/comparison.txt -------------------------------------------------------------------------------- /src/test/korean/const.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/korean/const.txt -------------------------------------------------------------------------------- /src/test/korean/constIndexAccess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/korean/constIndexAccess.txt -------------------------------------------------------------------------------- /src/test/korean/equal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/korean/equal.txt -------------------------------------------------------------------------------- /src/test/korean/function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/korean/function.txt -------------------------------------------------------------------------------- /src/test/korean/if.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/korean/if.txt -------------------------------------------------------------------------------- /src/test/korean/include.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/korean/include.txt -------------------------------------------------------------------------------- /src/test/korean/memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/korean/memory.txt -------------------------------------------------------------------------------- /src/test/korean/recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/korean/recursion.txt -------------------------------------------------------------------------------- /src/test/korean/while.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/test/korean/while.txt -------------------------------------------------------------------------------- /src/移植準備TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/src/移植準備TODO.txt -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/style.css -------------------------------------------------------------------------------- /web/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/web/dist/main.js -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/web/index.html -------------------------------------------------------------------------------- /中に入っているもの.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/中に入っているもの.txt -------------------------------------------------------------------------------- /文書/Sunabaの設計と実装.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/Sunabaの設計と実装.pdf -------------------------------------------------------------------------------- /文書/Sunaba上級ガイド.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/Sunaba上級ガイド.pdf -------------------------------------------------------------------------------- /文書/Sunaba入門-リバーシができるまで.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/Sunaba入門-リバーシができるまで.pdf -------------------------------------------------------------------------------- /文書/Sunaba早見.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/Sunaba早見.pdf -------------------------------------------------------------------------------- /文書/プログラムはこうして作られるお試し版.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/プログラムはこうして作られるお試し版.pdf -------------------------------------------------------------------------------- /文書/教育言語Sunaba.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/教育言語Sunaba.pdf -------------------------------------------------------------------------------- /文書/私が本を書くことについて.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/私が本を書くことについて.pdf -------------------------------------------------------------------------------- /文書/英語風Sunaba早見.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/英語風Sunaba早見.pdf -------------------------------------------------------------------------------- /文書/講義資料/2010/九州大学100702.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2010/九州大学100702.pdf -------------------------------------------------------------------------------- /文書/講義資料/2010/九州大学100709.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2010/九州大学100709.pdf -------------------------------------------------------------------------------- /文書/講義資料/2010/九州大学100723.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2010/九州大学100723.pdf -------------------------------------------------------------------------------- /文書/講義資料/2011/九州大学110415.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2011/九州大学110415.pdf -------------------------------------------------------------------------------- /文書/講義資料/2011/九州大学110422.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2011/九州大学110422.pdf -------------------------------------------------------------------------------- /文書/講義資料/2012/九州大学120706.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2012/九州大学120706.pdf -------------------------------------------------------------------------------- /文書/講義資料/2012/九州大学120713.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2012/九州大学120713.pdf -------------------------------------------------------------------------------- /文書/講義資料/2012/九州大学120727.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2012/九州大学120727.pdf -------------------------------------------------------------------------------- /文書/講義資料/2013/sample/drawing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2013/sample/drawing.txt -------------------------------------------------------------------------------- /文書/講義資料/2013/sample/drawingWithRect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2013/sample/drawingWithRect.txt -------------------------------------------------------------------------------- /文書/講義資料/2013/sample/first.txt: -------------------------------------------------------------------------------- 1 | memory[65050] -> 990000 2 | -------------------------------------------------------------------------------- /文書/講義資料/2013/sample/line100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2013/sample/line100.txt -------------------------------------------------------------------------------- /文書/講義資料/2013/sample/square10x10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2013/sample/square10x10.txt -------------------------------------------------------------------------------- /文書/講義資料/2013/sample/square10x10UsingNamedMemory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2013/sample/square10x10UsingNamedMemory.txt -------------------------------------------------------------------------------- /文書/講義資料/2013/sample/subProgram_horizontalLine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2013/sample/subProgram_horizontalLine.txt -------------------------------------------------------------------------------- /文書/講義資料/2013/sample/subProgram_point.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2013/sample/subProgram_point.txt -------------------------------------------------------------------------------- /文書/講義資料/2013/sample/subProgram_rectangle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2013/sample/subProgram_rectangle.txt -------------------------------------------------------------------------------- /文書/講義資料/2013/九州大学130412.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2013/九州大学130412.pdf -------------------------------------------------------------------------------- /文書/講義資料/2013/九州大学130419.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2013/九州大学130419.pdf -------------------------------------------------------------------------------- /文書/講義資料/2013/九州大学130509.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirasho/Sunaba/HEAD/文書/講義資料/2013/九州大学130509.pdf --------------------------------------------------------------------------------