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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "filesys.h" #include "strfnd.h" #include <iostream> #include <string.h> namespace fs { #ifdef _WIN32 // WINDOWS #define _WIN32_WINNT 0x0501 #include <Windows.h> #include <stdio.h> #include <malloc.h> #include <tchar.h> 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 if (hFind == INVALID_HANDLE_VALUE) { _tprintf (TEXT("Invalid file handle. Error is %u.\n"), GetLastError()); retval = (-1); } else { // NOTE: // Be very sure to not include '..' in the results, it will // result in an epic failure when deleting stuff. DirListNode node; node.name = FindFileData.cFileName; node.dir = FindFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY; if(node.name != "." && node.name != "..") listing.push_back(node); // List all the other files in the directory. while (FindNextFile(hFind, &FindFileData) != 0) { DirListNode node; node.name = FindFileData.cFileName; node.dir = FindFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY; if(node.name != "." && node.name != "..") listing.push_back(node); } dwError = GetLastError(); FindClose(hFind); if (dwError != ERROR_NO_MORE_FILES) { _tprintf (TEXT("FindNextFile error. Error is %u.\n"), dwError); retval = (-1); goto Cleanup; } } retval = 0; Cleanup: free(DirSpec); if(retval != 0) listing.clear(); //for(unsigned int i=0; i<listing.size(); i++){ // std::cout<<listing[i].name<<(listing[i].dir?" (dir)":" (file)")<<std::endl; //} return listing; } bool CreateDir(std::string path) { bool r = CreateDirectory(path.c_str(), NULL); if(r == true) return true; if(GetLastError() == ERROR_ALREADY_EXISTS) return true; return false; } bool PathExists(std::string path) { return (GetFileAttributes(path.c_str()) != INVALID_FILE_ATTRIBUTES); } bool RecursiveDelete(std::string path) { std::cerr<<"Removing \""<<path<<"\""<<std::endl; //return false; // This silly function needs a double-null terminated string... // Well, we'll just make sure it has at least two, then. path += "\0\0"; SHFILEOPSTRUCT sfo; sfo.hwnd = NULL; sfo.wFunc = FO_DELETE; sfo.pFrom = path.c_str(); sfo.pTo = NULL; sfo.fFlags = FOF_SILENT | FOF_NOCONFIRMATION | FOF_NOCONFIRMMKDIR; int r = SHFileOperation(&sfo); if(r != 0) std::cerr<<"SHFileOperation returned "<<r<<std::endl; //return (r == 0); return true; } #else // POSIX #include <sys/types.h> #include <dirent.h> #include <errno.h> #include <sys/stat.h> #include <sys/wait.h> std::vector<DirListNode> GetDirListing(std::string pathstring) { std::vector<DirListNode> listing; DIR *dp; struct dirent *dirp; if((dp = opendir(pathstring.c_str())) == NULL) { //std::cout<<"Error("<<errno<<") opening "<<pathstring<<std::endl; return listing; } while ((dirp = readdir(dp)) != NULL) { // NOTE: // Be very sure to not include '..' in the results, it will // result in an epic failure when deleting stuff. if(dirp->d_name[0]!='.'){ DirListNode node; node.name = dirp->d_name; if(dirp->d_type == DT_DIR) node.dir = true; else node.dir = false; if(node.name != "." && node.name != "..") listing.push_back(node); } } closedir(dp); return listing; } bool CreateDir(std::string path) { int r = mkdir(path.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH); if(r == 0) { return true; } else { // If already exists, return true if(errno == EEXIST) return true; return false; } } bool PathExists(std::string path) { struct stat st; return (stat(path.c_str(),&st) == 0); } #: src/guiConfigureWorld.cpp:262 src/guiCreateWorld.cpp:165 #: src/guiKeyChangeMenu.cpp:179 src/keycode.cpp:223 msgid "Cancel" msgstr "Tühista" #: src/guiConfigureWorld.cpp:268 src/guiKeyChangeMenu.cpp:173 msgid "Save" msgstr "Salvesta" #: src/guiConfigureWorld.cpp:394 msgid "Configuration saved. " msgstr "Konfiguratsioon salvestatud. " #: src/guiConfigureWorld.cpp:402 msgid = fork(); if(child_pid == 0) { // Child char argv_data[3][10000]; strcpy(argv_data[0], "/bin/rm"); strcpy(argv_data[1], "-rf"); strncpy(argv_data[2], path.c_str(), 10000); char *argv[4]; argv[0] = argv_data[0]; argv[1] = argv_data[1]; argv[2] = argv_data[2]; argv[3] = NULL; std::cerr<<"Executing '"<<argv[0]<<"' '"<<argv[1]<<"' '" <<argv[2]<<"'"<<std::endl; execv(argv[0], argv); // Execv shouldn't return. Failed. return false; } else { // Parent int child_status; pid_t tpid; do{ tpid = wait(&child_status); //if(tpid != child_pid) process_terminated(tpid); }while(tpid != child_pid); return (child_status == 0); } } #endif bool RecursiveDeleteContent(std::string path) { std::cerr<<"Removing content of \""<<path<<"\""<<std::endl; std::vector<DirListNode> list = GetDirListing(path); for(unsigned int i #: src/guiKeyChangeMenu.cpp:377 msgid "Jump" msgstr "Hüppamine" #: src/guiKeyChangeMenu.cpp:378 msgid "Sneak" msgstr "Hiilimine" #: src/guiKeyChangeMenu.cpp:379 msgid "Drop" msgstr "Viska maha" #: src/guiKeyChangeMenu.cpp:380 msgid "Inventory" msgstr "Seljakott" #: src/guiKeyChangeMenu.cpp:381 msgid "Chat" msgstr "Jututuba" #: src/guiKeyChangeMenu.cpp:382 msgid "Command" msgstr "Käsklus" #: src/guiKeyChangeMenu.cpp:383 msgid "Console" msgstr "Konsool" #: src/guiKeyChangeMenu.cpp:384 msgid "Toggle fly" msgstr "Lülita lendamine sisse" #: src/guiKeyChangeMenu.cpp:385 msgid "Toggle fast" msgstr "Lülita kiirus sisse" #: src/guiKeyChangeMenu.cpp:386 msgid "Toggle noclip" msgstr "Lülita läbi seinte minek sisse" #: src/guiKeyChangeMenu.cpp:387 msgid "Range select" msgstr "Kauguse valik" #: src/guiKeyChangeMenu.cpp:388 msgid "Print stacks" msgstr "Prindi kogused" #: src/guiMainMenu.cpp:92 msgid "Cannot create world: Name contains invalid characters" msgstr "Maailma loomine ebaõnnestus: Nimes esineb keelatud tähti" #: src/guiMainMenu.cpp:101 msgid "Cannot create world: A world by this name already exists" msgstr "Maailma loomine ebaõnnestus: Samanimeline maailm on juba olemas" #: src/guiMainMenu.cpp:283 msgid "Singleplayer" msgstr "Üksikmäng" #: src/guiMainMenu.cpp:284 msgid "Multiplayer" msgstr "Mitmikmäng" #: src/guiMainMenu.cpp:285 msgid "Advanced" msgstr "Arenenud sätted" #: src/guiMainMenu.cpp:286 msgid "Settings" msgstr "Sätted" #: src/guiMainMenu.cpp:287 msgid "Credits" msgstr "Tänuavaldused" #: src/guiMainMenu.cpp:317 msgid "Select World:" msgstr "Vali maailm:" #: src/guiMainMenu.cpp: