summaryrefslogtreecommitdiff
path: root/menuApp/src/dirscanner.cpp
blob: 5798e557aa1b4ada73959eee81fe7cc98f09801f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "dirscanner.h"

void playItem::play(){

}
void playItem::draw(){

}
bool playItem::isFinished(){

}

void dirScanner::scan(){
	/*
	parse directories and create structure
	showing which folder to check at which time
	*/
	slots.clear();

	ofDirectory dir(rootdir);

	dir.allowExt(""); //get directories
	
	dir.listDir();
	for(int i = 0; i < dir.size(); i++){
		string d=dir.getName(i);
		int start = ofToInt(d.substr(0,4));
		int end = ofToInt(d.substr(5,4));

		if (start&&end){
			slots.push_back(timeSlot(dir.getPath(i),start,end));
			ofLogNotice() << "item "<<i<<": "<<start<<" - "<<end<<" "<<dir.getPath(i);

		}
	}
}

int dirScanner::getSlotForTime(int time){
	/*
	read vector of slots
	return index of requested time
	*/
	for(int i = 0; i < slots.size(); i++){
		if (slots[i].start<=time&&slots[i].end>=time){
			return i;
		}
	}
	return -1;
}

void dirPlayer::load(){

}

void dirPlayer::draw(){
	
}