Home
last modified time | relevance | path

Searched refs:oaml (Results 1 – 25 of 25) sorted by relevance

/dports/audio/oaml/oaml-1.3.4/src/
H A Doaml.cpp30 oaml = new oamlBase(); in oamlApi()
35 delete oaml; in ~oamlApi()
112 oaml->StopPlaying(); in StopPlaying()
116 oaml->Pause(); in Pause()
120 oaml->Resume(); in Resume()
124 oaml->PauseToggle(); in PauseToggle()
128 return oaml->IsPaused(); in IsPaused()
144 oaml->SetVolume(vol); in SetVolume()
184 oaml->Update(); in Update()
220 oaml->LoadState(state); in LoadState()
[all …]
H A DoamlC.cpp29 static oamlBase oaml;
34 return oaml.GetVersion();
86 oaml.StopPlaying();
90 oaml.Pause();
94 oaml.Resume();
98 oaml.PauseToggle();
102 return oaml.IsPaused();
114 oaml.SetVolume(vol);
122 oaml.AddTension(value);
130 oaml.Update();
[all …]
H A DoamlStudioApi.cpp34 oaml = _oaml; in oamlStudioApi()
41 oaml->ProjectNew(); in ProjectNew()
45 oaml->ProjectSetBPM(bpm); in ProjectSetBPM()
53 return oaml->ProjectGetBPM(); in ProjectGetBPM()
65 return oaml->TrackRemove(name); in TrackRemove()
69 oaml->TrackRename(name, newName); in TrackRename()
93 return oaml->TrackExists(name); in TrackExists()
109 return oaml->TrackGetVolume(name); in TrackGetVolume()
113 return oaml->TrackGetFadeIn(name); in TrackGetFadeIn()
289 return oaml->LayerNew(name); in LayerNew()
[all …]
H A DoamlUnityPlugin.cpp35 oamlApi oaml; variable
70 oaml.StopPlaying(); in oamlStopPlaying()
74 oaml.Pause(); in oamlPause()
78 oaml.Resume(); in oamlResume()
82 oaml.PauseToggle(); in oamlPauseToggle()
86 return oaml.IsPaused(); in oamlIsPaused()
98 oaml.SetVolume(vol); in oamlSetVolume()
106 oaml.AddTension(value); in oamlAddTension()
114 oaml.Update(); in oamlUpdate()
138 oaml.Shutdown(); in oamlShutdown()
[all …]
H A Dtest.cpp35 oamlApi *oaml = new oamlApi(); in main() local
36 oaml->InitAudioDevice(44100); in main()
37 oaml->Init("oaml.defs"); in main()
38 oaml->PlayTrack("Intro"); in main()
56 oaml->Shutdown(); in main()
57 delete oaml; in main()
/dports/games/wyrmgus/Wyrmgus-3.5.4/src/sound/
H A Dmusic.cpp63 oamlApi *oaml = nullptr; variable
163 oaml = new oamlApi(); in InitMusicOAML()
164 oaml->SetFileCallbacks(&fileCbs); in InitMusicOAML()
165 oaml->Init(filename.c_str()); in InitMusicOAML()
176 oaml->ReadDefsFile(filename.c_str()); in LoadOAMLDefinitionsFile()
183 if (oaml) { in ShutdownMusicOAML()
184 oaml->Shutdown(); in ShutdownMusicOAML()
185 delete oaml; in ShutdownMusicOAML()
186 oaml = nullptr; in ShutdownMusicOAML()
H A Dsound_server.cpp122 extern oamlApi *oaml;
337 if (enableOAML && oaml) { in MixIntoBuffer()
387 if (enableOAML && oaml)
388 oaml->Update();
930 oaml->StopPlaying();
1001 if (oaml->IsPlaying())
1018 oaml->AddTension(value);
1122 if (oaml) {
1123 oaml->Shutdown();
1124 delete oaml;
[all …]
/dports/audio/oaml/oaml-1.3.4/
H A DREADME.md1 [![Build Status](https://travis-ci.org/oamldev/oaml.svg)](https://travis-ci.org/oamldev/oaml.svg?br…
69 oamlApi *oaml;
71 // Initialization, oaml.defs is the definitions saved/export with oamlStudio
72 oaml = new oamlApi();
73 oaml->Init("oaml.defs");
76 oaml->PlayTrack("track1");
79 oaml->Pause();
82 oaml->Resume();
85 oaml->StopPlaying();
88 oaml->Shutdown();
[all …]
H A Doaml.cmake.in1 find_path(OAML_INCLUDE_DIRS NAMES oaml.h PATHS "@CMAKE_INSTALL_PREFIX@/include")
2 find_library(OAML_LIBRARIES NAMES oaml PATHS "@CMAKE_INSTALL_PREFIX@/lib")
H A Doaml.pc.in1 # oaml pkg-config file
8 Name: oaml
H A D.travis.yml25 irc: "irc.freenode.org#oaml"
H A D.gitignore5 oaml.log
/dports/games/wyrmgus/Wyrmgus-3.5.4/
H A D.gitmodules1 [submodule "src/oaml"]
2 path = src/oaml
3 url = https://github.com/oamldev/oaml
/dports/games/wyrmgus/Wyrmgus-3.5.4/cmake/modules/
H A DFindOAML.cmake10 # where to find oaml.h
25 find_path(OAML_INCLUDE_DIRS oaml.h)
30 find_library(OAML_LIBRARY_SHARED oaml)
/dports/audio/oaml/oaml-1.3.4/vs/
H A Doaml.sln4 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oaml", "oaml.vcxproj", "{4B6BC33A-F57A-50A5-2A…
/dports/audio/oaml/
H A D.license-catalog.mk5 _LICENSE_DISTFILES=oamldev-oaml-v1.3.4_GH0.tar.gz
/dports/games/wyrmgus/Wyrmgus-3.5.4/src/map/
H A Dmap_layer.cpp55 extern oamlApi *oaml;
323 if (enableOAML && oaml && this == UI.CurrentMapLayer && this->GetTimeOfDay()) { in SetTimeOfDay()
H A Dmap.cpp87 extern oamlApi *oaml;
/dports/games/wyrmsun/Wyrmsun-3.5.4/
H A D.gitignore13 oaml.log
/dports/audio/oaml/oaml-1.3.4/include/
H A Doaml.h185 oamlBase *oaml;
355 oamlBase *oaml;
/dports/games/wyrmgus/Wyrmgus-3.5.4/src/stratagus/
H A Dmainloop.cpp89 extern oamlApi *oaml;
327 if (enableOAML && oaml && UI.CurrentMapLayer->GetTimeOfDay()) { in GameLogicLoop()
/dports/chinese/gcin-qt5/gcin-2.9.0/data/
H A DNewCJ3.cin18230 oaml; 似是而非
/dports/chinese/gcin/gcin-2.9.0/data/
H A DNewCJ3.cin18230 oaml; 似是而非
/dports/chinese/gcin-gtk3/gcin-2.9.0/data/
H A DNewCJ3.cin18230 oaml; 似是而非
/dports/chinese/rime-array/rime-array-d10f2f8b2aec7c7e736ace01e8a399e5ae5e7c3a/
H A Darray30_phrases.dict.yaml102770 矯形外科 oaml'