浏览代码

Fixed sorting inside subdirectories, removed dead code

PavelSindler 7 年之前
父节点
当前提交
f53426b639
共有 2 个文件被更改,包括 7 次插入22 次删除
  1. 7 21
      Firmware/cardreader.cpp
  2. 0 1
      Firmware/cardreader.h

+ 7 - 21
Firmware/cardreader.cpp

@@ -58,27 +58,6 @@ char *createFilename(char *buffer,const dir_t &p) //buffer>12characters
   return buffer;
 }
 
-
-void CardReader::lsDive_pointer(const char *prepend, SdFile parent, const char * const match) {
-	dir_t p;
-
-	//parent.seekSet = 
-	// Read the next entry from a directory
-	//SERIAL_ECHOPGM("Cur pos before.: ");
-	//uint32_t pom = parent.curPosition();
-	//MYSERIAL.println(pom, 10);
-	parent.readDir(p, longFilename);
-	//SERIAL_ECHOPGM("Cur pos.: ");
-	//pom = parent.curPosition();
-	//MYSERIAL.println(pom, 10);
-
-	filenameIsDir = DIR_IS_SUBDIR(&p);
-
-	createFilename(filename, p);
-	creationDate = p.creationDate;
-	creationTime = p.creationTime;
-}
-
 /**
 * Dive into a folder and recurse depth-first to perform a pre-set operation lsAction:
 *   LS_Count       - Add +1 to nrFiles for every file within the parent
@@ -698,6 +677,9 @@ void CardReader::chdir(const char * relpath)
       workDirParents[0]=*parent;
     }
     workDir=newfile;
+    #ifdef SDCARD_SORT_ALPHA
+	  presort();
+    #endif
   }
 }
 
@@ -709,6 +691,9 @@ void CardReader::updir()
     workDir = workDirParents[0];
     for (uint8_t d = 0; d < workDirDepth; d++)
       workDirParents[d] = workDirParents[d+1];
+    #ifdef SDCARD_SORT_ALPHA
+	  presort();
+    #endif
   }
 }
 
@@ -1009,6 +994,7 @@ void CardReader::presort() {
 	  lcd_implementation_clear();
 	  lcd_update(2);
 	#endif
+	  lcd_update(2);
 	  KEEPALIVE_STATE(NOT_BUSY);
 	  lcd_timeoutToStatus = millis() + LCD_TIMEOUT_TO_STATUS;
 }

+ 0 - 1
Firmware/cardreader.h

@@ -148,7 +148,6 @@ private:
   int16_t nrFiles; //counter for the files in the current directory and recycled as position counter for getting the nrFiles'th name in the directory.
   char* diveDirName;
   void lsDive(const char *prepend, SdFile parent, const char * const match=NULL);
-  void lsDive_pointer(const char *prepend, SdFile parent, const char * const match = NULL);
   #ifdef SDCARD_SORT_ALPHA
     void flush_presort();
   #endif