commit 691fcb6479e071e4c3e78a11bf8af950ee0f3092
parent 46dcb24a19893ed7054e527b8dcffb20c9280bf5
Author: Adam M <[email protected]>
Date: Wed, 7 Nov 2018 22:30:37 -0600
Merge branch 'master' of https://github.com/freddyz/computerscare-vcv-modules
Diffstat:
2 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/src/dtpulse.cpp b/src/dtpulse.cpp
@@ -6,15 +6,21 @@ bool is_digits(const std::string &str)
{
return str.find_first_not_of(integerlookup) == std::string::npos;
}
-
+std::vector<int> parseStringAsValues(std::string input, std::string lookup) {
+// "113" -> {1,1,3}
+ std::vector<int> absoluteSequence;
+ absoluteSequence.resize(0);
+ return absoluteSequence;
+}
std::vector<int> parseEntireString(std::string input,std::string lookup) {
+// "113" -> {1,1,1,0,0}
std::vector<int> absoluteSequence;
absoluteSequence.resize(0);
bool noNumbers = true;
for(unsigned int i = 0; i < input.length(); i++) {
noNumbers= noNumbers && (lookup.find(input[i]) == std::string::npos);
}
- if(input.empty() || noNumbers) {
+ if(noNumbers) {
absoluteSequence.push_back(0);
return absoluteSequence;
}
@@ -36,7 +42,7 @@ std::vector<int> parseEntireString(std::string input,std::string lookup) {
std::stringstream offsetstream(input);
while(std::getline(inputstream,commaseg,',')) {
if(commaseg.empty()) {
- absoluteSequence.push_back(0);
+ //absoluteSequence.push_back(0);
}
else {
std::stringstream atstream(commaseg);
@@ -69,6 +75,7 @@ std::vector<int> parseEntireString(std::string input,std::string lookup) {
else {
offsetnum = (offsetVec.size() > 1 && is_digits(offsetVec[1]))? std::stoi(offsetVec[1]) : 0;
commaVec.resize(0);
+ // below may be the only line that has to change for a by value parse
commaVec = parseDt(atExpand(offsetVec[0],atnum,lookup),offsetnum,lookup);
absoluteSequence.insert(absoluteSequence.end(),commaVec.begin(),commaVec.end());
}
diff --git a/src/dtpulse.hpp b/src/dtpulse.hpp
@@ -8,6 +8,7 @@ bool is_digits(const std::string &str);
std::vector <int> parseString(std::string expr);
std::vector <int> parseDt(std::string input, int offset, std::string lookup);
std::vector<int> parseEntireString(std::string input,std::string lookup);
+std::vector<int> parseStringAsValues(std::string input,std::string lookup);
void printVector(std::vector <int> intVector);
std::string hashExpand(std::string input, int hashnum);
std::string atExpand(std::string input, int atnum, std::string lookup);