From 8791d3b52ebde5b635e158d27c165695f81f60b1 Mon Sep 17 00:00:00 2001 From: marvin <marvin@marvin-TERRA-MOBILE-1529H> Date: Sun, 1 Mar 2020 03:48:56 +0100 Subject: [PATCH] ModelSetup tolerates non-.gazebo.xacro files in in_gmPath --- .../src/ModelSetup.java | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/src/var/FeatureModelImplGenerator/src/ModelSetup.java b/src/var/FeatureModelImplGenerator/src/ModelSetup.java index 4545982..dacfab2 100644 --- a/src/var/FeatureModelImplGenerator/src/ModelSetup.java +++ b/src/var/FeatureModelImplGenerator/src/ModelSetup.java @@ -50,9 +50,18 @@ public class ModelSetup extends XMLHelper{ String out_mName = getConfigVal(ModelSetupConfig, "output/model", "name"); Document model = readXml(in_mPath+in_mName); - + + //Get sensorconfig- and gazebomodel file names. + //All files in in_scPath will be treated as sensorconfigs, while in_gmPath may + //contain other files that will be filtered out! List<String> scList = getFileNames(in_scPath); - List<String> gmList = getFileNames(in_gmPath); + List<String> tmpList = getFileNames(in_gmPath); + List<String> gmList = new ArrayList<String>(); + for(String s : tmpList) { + if(s.endsWith(GM_ENDING)) { + gmList.add(s); + } + } //Check whether feature input was empty. //It is possible to have no sensors (so you can build a custom bot with no sensors), @@ -72,12 +81,6 @@ public class ModelSetup extends XMLHelper{ System.exit(-1); } } - for(String gm : gmList) { - if(!gm.endsWith(GM_ENDING)) { - System.err.println("Error: gazebo model file \'"+gm+"\' does not have an \'"+GM_ENDING+"\' ending."); - System.exit(-1); - } - } //Sort features alphabetically (ascending order; upper case first; then lower case). Collections.sort(scList); -- GitLab