Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
artoa4argo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
argoTools
artoa4argo
Commits
c4d76119
Commit
c4d76119
authored
5 years ago
by
leprob001
Browse files
Options
Downloads
Patches
Plain Diff
The soundsource file that is given in artoa.ini is now loaded at startup.
parent
672528dc
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/+artoa/+controller/initializeArtoa4.m
+11
-0
11 additions, 0 deletions
lib/+artoa/+controller/initializeArtoa4.m
with
11 additions
and
0 deletions
lib/+artoa/+controller/initializeArtoa4.m
+
11
−
0
View file @
c4d76119
...
@@ -51,6 +51,17 @@ if isempty(artoaDataInput.ini)
...
@@ -51,6 +51,17 @@ if isempty(artoaDataInput.ini)
error
([
mfilename
': artoa.ini has been found but is empty. Please use a valid artoa.ini!'
]);
error
([
mfilename
': artoa.ini has been found but is empty. Please use a valid artoa.ini!'
]);
end
end
%% Read soundsource file if existent
try
soundsourceFilepath
=
artoaDataInput
.
ini
.
files
.
soundsourcefile
;
if
~
isfile
(
soundsourceFilepath
)
error
([
mfilename
': '
soundsourceFilepath
' is not a file. Please check your artoa.ini!'
]);
end
artoaDataInput
.
soundsources
=
artoa
.
load
.
soundsources
(
soundsourceFilepath
);
artoa
.
soundsources
.
generateSoundSourceColors
();
catch
ex
error
([
mfilename
': Reading soundsource file failed with the following message: '
ex
.
message
]);
end
%% Start artoa4
%% Start artoa4
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment