2014-02-10 01:10:30 +00:00
/*************************************************************************/
/* editor_file_system.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
2017-08-27 12:16:55 +00:00
/* https://godotengine.org */
2014-02-10 01:10:30 +00:00
/*************************************************************************/
2017-01-01 21:01:57 +00:00
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
2017-04-07 22:11:42 +00:00
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
2014-02-10 01:10:30 +00:00
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
# include "editor_file_system.h"
2017-01-16 07:04:19 +00:00
2017-03-05 15:44:50 +00:00
# include "editor_node.h"
# include "editor_resource_preview.h"
# include "editor_settings.h"
# include "io/resource_import.h"
2014-02-10 01:10:30 +00:00
# include "io/resource_loader.h"
# include "io/resource_saver.h"
2017-03-05 15:44:50 +00:00
# include "os/file_access.h"
# include "os/os.h"
2017-07-19 20:00:46 +00:00
# include "project_settings.h"
2017-02-01 12:45:45 +00:00
# include "variant_parser.h"
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystem * EditorFileSystem : : singleton = NULL ;
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
void EditorFileSystemDirectory : : sort_files ( ) {
files . sort_custom < FileInfoSort > ( ) ;
}
2017-03-05 15:44:50 +00:00
int EditorFileSystemDirectory : : find_file_index ( const String & p_file ) const {
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < files . size ( ) ; i + + ) {
if ( files [ i ] - > file = = p_file )
2016-01-05 13:36:24 +00:00
return i ;
}
return - 1 ;
}
2017-03-05 15:44:50 +00:00
int EditorFileSystemDirectory : : find_dir_index ( const String & p_dir ) const {
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < subdirs . size ( ) ; i + + ) {
if ( subdirs [ i ] - > name = = p_dir )
2016-01-05 13:36:24 +00:00
return i ;
}
return - 1 ;
}
2014-02-10 01:10:30 +00:00
int EditorFileSystemDirectory : : get_subdir_count ( ) const {
return subdirs . size ( ) ;
}
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * EditorFileSystemDirectory : : get_subdir ( int p_idx ) {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
ERR_FAIL_INDEX_V ( p_idx , subdirs . size ( ) , NULL ) ;
2014-02-10 01:10:30 +00:00
return subdirs [ p_idx ] ;
}
2017-03-05 15:44:50 +00:00
int EditorFileSystemDirectory : : get_file_count ( ) const {
2014-02-10 01:10:30 +00:00
return files . size ( ) ;
}
2017-03-05 15:44:50 +00:00
String EditorFileSystemDirectory : : get_file ( int p_idx ) const {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
ERR_FAIL_INDEX_V ( p_idx , files . size ( ) , " " ) ;
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
return files [ p_idx ] - > file ;
2014-02-10 01:10:30 +00:00
}
String EditorFileSystemDirectory : : get_path ( ) const {
String p ;
2017-03-05 15:44:50 +00:00
const EditorFileSystemDirectory * d = this ;
while ( d - > parent ) {
p = d - > name + " / " + p ;
d = d - > parent ;
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
return " res:// " + p ;
2014-02-10 01:10:30 +00:00
}
String EditorFileSystemDirectory : : get_file_path ( int p_idx ) const {
String file = get_file ( p_idx ) ;
2017-03-05 15:44:50 +00:00
const EditorFileSystemDirectory * d = this ;
while ( d - > parent ) {
file = d - > name + " / " + file ;
d = d - > parent ;
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
return " res:// " + file ;
2014-02-10 01:10:30 +00:00
}
2015-08-23 23:15:56 +00:00
Vector < String > EditorFileSystemDirectory : : get_file_deps ( int p_idx ) const {
2017-03-05 15:44:50 +00:00
ERR_FAIL_INDEX_V ( p_idx , files . size ( ) , Vector < String > ( ) ) ;
2017-02-01 12:45:45 +00:00
return files [ p_idx ] - > deps ;
2015-08-23 23:15:56 +00:00
}
2016-05-27 17:18:40 +00:00
2017-08-29 23:17:34 +00:00
bool EditorFileSystemDirectory : : get_file_import_is_valid ( int p_idx ) const {
ERR_FAIL_INDEX_V ( p_idx , files . size ( ) , false ) ;
return files [ p_idx ] - > import_valid ;
}
2015-08-23 23:15:56 +00:00
StringName EditorFileSystemDirectory : : get_file_type ( int p_idx ) const {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
ERR_FAIL_INDEX_V ( p_idx , files . size ( ) , " " ) ;
2016-01-05 13:36:24 +00:00
return files [ p_idx ] - > type ;
2014-02-10 01:10:30 +00:00
}
String EditorFileSystemDirectory : : get_name ( ) {
return name ;
}
EditorFileSystemDirectory * EditorFileSystemDirectory : : get_parent ( ) {
return parent ;
}
void EditorFileSystemDirectory : : _bind_methods ( ) {
2017-03-05 15:44:50 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_subdir_count " ) , & EditorFileSystemDirectory : : get_subdir_count ) ;
2017-08-09 11:19:41 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_subdir " , " idx " ) , & EditorFileSystemDirectory : : get_subdir ) ;
2017-03-05 15:44:50 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_file_count " ) , & EditorFileSystemDirectory : : get_file_count ) ;
ClassDB : : bind_method ( D_METHOD ( " get_file " , " idx " ) , & EditorFileSystemDirectory : : get_file ) ;
ClassDB : : bind_method ( D_METHOD ( " get_file_path " , " idx " ) , & EditorFileSystemDirectory : : get_file_path ) ;
ClassDB : : bind_method ( D_METHOD ( " get_file_type " , " idx " ) , & EditorFileSystemDirectory : : get_file_type ) ;
2017-08-29 23:17:34 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_file_import_is_valid " , " idx " ) , & EditorFileSystemDirectory : : get_file_import_is_valid ) ;
2017-03-05 15:44:50 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_name " ) , & EditorFileSystemDirectory : : get_name ) ;
ClassDB : : bind_method ( D_METHOD ( " get_path " ) , & EditorFileSystemDirectory : : get_path ) ;
2017-08-09 11:19:41 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_parent " ) , & EditorFileSystemDirectory : : get_parent ) ;
2017-03-05 15:44:50 +00:00
ClassDB : : bind_method ( D_METHOD ( " find_file_index " , " name " ) , & EditorFileSystemDirectory : : find_file_index ) ;
ClassDB : : bind_method ( D_METHOD ( " find_dir_index " , " name " ) , & EditorFileSystemDirectory : : find_dir_index ) ;
2014-02-10 01:10:30 +00:00
}
EditorFileSystemDirectory : : EditorFileSystemDirectory ( ) {
2017-03-05 15:44:50 +00:00
modified_time = 0 ;
parent = NULL ;
2017-06-16 20:32:46 +00:00
verified = false ;
2014-02-10 01:10:30 +00:00
}
EditorFileSystemDirectory : : ~ EditorFileSystemDirectory ( ) {
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < files . size ( ) ; i + + ) {
2016-01-05 13:36:24 +00:00
memdelete ( files [ i ] ) ;
}
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < subdirs . size ( ) ; i + + ) {
2014-02-10 01:10:30 +00:00
memdelete ( subdirs [ i ] ) ;
}
}
2016-01-05 13:36:24 +00:00
void EditorFileSystem : : _scan_filesystem ( ) {
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
ERR_FAIL_COND ( ! scanning | | new_filesystem ) ;
2014-02-10 01:10:30 +00:00
//read .fscache
String cpath ;
sources_changed . clear ( ) ;
2016-01-05 13:36:24 +00:00
file_cache . clear ( ) ;
2014-02-10 01:10:30 +00:00
2017-07-19 20:00:46 +00:00
String project = ProjectSettings : : get_singleton ( ) - > get_resource_path ( ) ;
2015-06-06 12:44:38 +00:00
2017-08-29 22:50:58 +00:00
String fscache = EditorSettings : : get_singleton ( ) - > get_project_settings_path ( ) . plus_file ( " filesystem_cache3 " ) ;
2017-03-05 15:44:50 +00:00
FileAccess * f = FileAccess : : open ( fscache , FileAccess : : READ ) ;
2014-02-10 01:10:30 +00:00
if ( f ) {
//read the disk cache
2017-03-05 15:44:50 +00:00
while ( ! f - > eof_reached ( ) ) {
2014-02-10 01:10:30 +00:00
String l = f - > get_line ( ) . strip_edges ( ) ;
2017-03-05 15:44:50 +00:00
if ( l = = String ( ) )
2014-02-10 01:10:30 +00:00
continue ;
if ( l . begins_with ( " :: " ) ) {
Vector < String > split = l . split ( " :: " ) ;
2017-03-05 15:44:50 +00:00
ERR_CONTINUE ( split . size ( ) ! = 3 ) ;
2014-02-10 01:10:30 +00:00
String name = split [ 1 ] ;
2017-03-05 15:44:50 +00:00
cpath = name ;
2014-02-10 01:10:30 +00:00
} else {
Vector < String > split = l . split ( " :: " ) ;
2017-08-29 22:50:58 +00:00
ERR_CONTINUE ( split . size ( ) ! = 6 ) ;
2014-02-10 01:10:30 +00:00
String name = split [ 0 ] ;
String file ;
2017-03-05 15:44:50 +00:00
file = name ;
name = cpath . plus_file ( name ) ;
2014-02-10 01:10:30 +00:00
FileCache fc ;
2017-03-05 15:44:50 +00:00
fc . type = split [ 1 ] ;
fc . modification_time = split [ 2 ] . to_int64 ( ) ;
2017-02-01 12:45:45 +00:00
fc . import_modification_time = split [ 3 ] . to_int64 ( ) ;
2017-08-29 22:50:58 +00:00
fc . import_valid = split [ 4 ] . to_int64 ( ) ! = 0 ;
2014-02-10 01:10:30 +00:00
2017-08-29 22:50:58 +00:00
String deps = split [ 5 ] . strip_edges ( ) ;
2015-08-23 23:15:56 +00:00
if ( deps . length ( ) ) {
Vector < String > dp = deps . split ( " <> " ) ;
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < dp . size ( ) ; i + + ) {
String path = dp [ i ] ;
2017-02-01 12:45:45 +00:00
fc . deps . push_back ( path ) ;
2015-08-23 23:15:56 +00:00
}
}
2017-03-05 15:44:50 +00:00
file_cache [ name ] = fc ;
2014-02-10 01:10:30 +00:00
}
}
f - > close ( ) ;
memdelete ( f ) ;
}
2017-08-29 22:50:58 +00:00
String update_cache = EditorSettings : : get_singleton ( ) - > get_project_settings_path ( ) . plus_file ( " filesystem_update3 " ) ;
2017-08-17 20:02:43 +00:00
if ( FileAccess : : exists ( update_cache ) ) {
{
FileAccessRef f = FileAccess : : open ( update_cache , FileAccess : : READ ) ;
String l = f - > get_line ( ) . strip_edges ( ) ;
while ( l ! = String ( ) ) {
file_cache . erase ( l ) ; //erase cache for this, so it gets updated
l = f - > get_line ( ) . strip_edges ( ) ;
}
}
DirAccessRef d = DirAccess : : create ( DirAccess : : ACCESS_FILESYSTEM ) ;
d - > remove ( update_cache ) ; //bye bye update cache
}
2017-03-05 15:44:50 +00:00
EditorProgressBG scan_progress ( " efs " , " ScanFS " , 1000 ) ;
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
ScanProgress sp ;
2017-03-05 15:44:50 +00:00
sp . low = 0 ;
sp . hi = 1 ;
sp . progress = & scan_progress ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
new_filesystem = memnew ( EditorFileSystemDirectory ) ;
new_filesystem - > parent = NULL ;
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
DirAccess * d = DirAccess : : create ( DirAccess : : ACCESS_RESOURCES ) ;
d - > change_dir ( " res:// " ) ;
2017-03-05 15:44:50 +00:00
_scan_new_dir ( new_filesystem , d , sp ) ;
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
file_cache . clear ( ) ; //clear caches, no longer needed
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
memdelete ( d ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
f = FileAccess : : open ( fscache , FileAccess : : WRITE ) ;
_save_filesystem_cache ( new_filesystem , f ) ;
2014-02-10 01:10:30 +00:00
f - > close ( ) ;
memdelete ( f ) ;
2017-03-05 15:44:50 +00:00
scanning = false ;
2014-02-10 01:10:30 +00:00
}
2017-02-01 12:45:45 +00:00
void EditorFileSystem : : _save_filesystem_cache ( ) {
2017-08-29 22:50:58 +00:00
String fscache = EditorSettings : : get_singleton ( ) - > get_project_settings_path ( ) . plus_file ( " filesystem_cache3 " ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
FileAccess * f = FileAccess : : open ( fscache , FileAccess : : WRITE ) ;
_save_filesystem_cache ( filesystem , f ) ;
2017-02-01 12:45:45 +00:00
f - > close ( ) ;
memdelete ( f ) ;
}
2014-02-10 01:10:30 +00:00
void EditorFileSystem : : _thread_func ( void * _userdata ) {
2017-03-05 15:44:50 +00:00
EditorFileSystem * sd = ( EditorFileSystem * ) _userdata ;
2016-01-05 13:36:24 +00:00
sd - > _scan_filesystem ( ) ;
}
bool EditorFileSystem : : _update_scan_actions ( ) {
sources_changed . clear ( ) ;
2017-03-05 15:44:50 +00:00
bool fs_changed = false ;
2016-01-05 13:36:24 +00:00
2017-02-01 12:45:45 +00:00
Vector < String > reimports ;
2017-03-05 15:44:50 +00:00
for ( List < ItemAction > : : Element * E = scan_actions . front ( ) ; E ; E = E - > next ( ) ) {
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
ItemAction & ia = E - > get ( ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
switch ( ia . action ) {
2016-01-05 13:36:24 +00:00
case ItemAction : : ACTION_NONE : {
} break ;
case ItemAction : : ACTION_DIR_ADD : {
2017-03-05 15:44:50 +00:00
int idx = 0 ;
for ( int i = 0 ; i < ia . dir - > subdirs . size ( ) ; i + + ) {
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
if ( ia . new_dir - > name < ia . dir - > subdirs [ i ] - > name )
2016-01-05 13:36:24 +00:00
break ;
idx + + ;
}
2017-03-05 15:44:50 +00:00
if ( idx = = ia . dir - > subdirs . size ( ) ) {
2016-01-05 13:36:24 +00:00
ia . dir - > subdirs . push_back ( ia . new_dir ) ;
} else {
2017-03-05 15:44:50 +00:00
ia . dir - > subdirs . insert ( idx , ia . new_dir ) ;
2016-01-05 13:36:24 +00:00
}
2017-03-05 15:44:50 +00:00
fs_changed = true ;
2016-01-05 13:36:24 +00:00
} break ;
case ItemAction : : ACTION_DIR_REMOVE : {
ERR_CONTINUE ( ! ia . dir - > parent ) ;
ia . dir - > parent - > subdirs . erase ( ia . dir ) ;
2017-03-05 15:44:50 +00:00
memdelete ( ia . dir ) ;
fs_changed = true ;
2016-01-05 13:36:24 +00:00
} break ;
case ItemAction : : ACTION_FILE_ADD : {
2017-03-05 15:44:50 +00:00
int idx = 0 ;
for ( int i = 0 ; i < ia . dir - > files . size ( ) ; i + + ) {
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
if ( ia . new_file - > file < ia . dir - > files [ i ] - > file )
2016-01-05 13:36:24 +00:00
break ;
idx + + ;
}
2017-03-05 15:44:50 +00:00
if ( idx = = ia . dir - > files . size ( ) ) {
2016-01-05 13:36:24 +00:00
ia . dir - > files . push_back ( ia . new_file ) ;
} else {
2017-03-05 15:44:50 +00:00
ia . dir - > files . insert ( idx , ia . new_file ) ;
2016-01-05 13:36:24 +00:00
}
2017-03-05 15:44:50 +00:00
fs_changed = true ;
2016-01-05 13:36:24 +00:00
} break ;
case ItemAction : : ACTION_FILE_REMOVE : {
int idx = ia . dir - > find_file_index ( ia . file ) ;
2017-03-05 15:44:50 +00:00
ERR_CONTINUE ( idx = = - 1 ) ;
2017-08-14 23:13:14 +00:00
_delete_internal_files ( ia . dir - > files [ idx ] - > file ) ;
2017-03-05 15:44:50 +00:00
memdelete ( ia . dir - > files [ idx ] ) ;
2016-01-05 13:36:24 +00:00
ia . dir - > files . remove ( idx ) ;
2017-03-05 15:44:50 +00:00
fs_changed = true ;
2016-01-05 13:36:24 +00:00
} break ;
2017-02-01 12:45:45 +00:00
case ItemAction : : ACTION_FILE_REIMPORT : {
2016-01-05 13:36:24 +00:00
int idx = ia . dir - > find_file_index ( ia . file ) ;
2017-03-05 15:44:50 +00:00
ERR_CONTINUE ( idx = = - 1 ) ;
2016-01-05 13:36:24 +00:00
String full_path = ia . dir - > get_file_path ( idx ) ;
2017-02-01 12:45:45 +00:00
reimports . push_back ( full_path ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
fs_changed = true ;
2016-01-05 13:36:24 +00:00
} break ;
}
}
2017-02-01 12:45:45 +00:00
if ( reimports . size ( ) ) {
reimport_files ( reimports ) ;
}
2016-01-05 13:36:24 +00:00
scan_actions . clear ( ) ;
return fs_changed ;
2014-02-10 01:10:30 +00:00
}
void EditorFileSystem : : scan ( ) {
2017-03-05 15:44:50 +00:00
if ( false /*&& bool(Globals::get_singleton()->get("debug/disable_scan"))*/ )
return ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( scanning | | scanning_changes | | thread )
2014-02-10 01:10:30 +00:00
return ;
2017-02-01 12:45:45 +00:00
_update_extensions ( ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
abort_scan = false ;
2014-02-10 01:10:30 +00:00
if ( ! use_threads ) {
2017-03-05 15:44:50 +00:00
scanning = true ;
scan_total = 0 ;
2016-01-05 13:36:24 +00:00
_scan_filesystem ( ) ;
2014-02-10 01:10:30 +00:00
if ( filesystem )
memdelete ( filesystem ) ;
2017-01-14 11:26:56 +00:00
//file_type_cache.clear();
2017-03-05 15:44:50 +00:00
filesystem = new_filesystem ;
new_filesystem = NULL ;
2016-01-05 13:36:24 +00:00
_update_scan_actions ( ) ;
2017-03-05 15:44:50 +00:00
scanning = false ;
2014-02-10 01:10:30 +00:00
emit_signal ( " filesystem_changed " ) ;
2017-03-05 15:44:50 +00:00
emit_signal ( " sources_changed " , sources_changed . size ( ) > 0 ) ;
2014-02-10 01:10:30 +00:00
} else {
ERR_FAIL_COND ( thread ) ;
set_process ( true ) ;
Thread : : Settings s ;
2017-03-05 15:44:50 +00:00
scanning = true ;
scan_total = 0 ;
s . priority = Thread : : PRIORITY_LOW ;
thread = Thread : : create ( _thread_func , this , s ) ;
2014-02-10 01:10:30 +00:00
//tree->hide();
//progress->show();
}
}
2017-03-05 15:44:50 +00:00
void EditorFileSystem : : ScanProgress : : update ( int p_current , int p_total ) const {
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
float ratio = low + ( ( hi - low ) / p_total ) * p_current ;
progress - > step ( ratio * 1000 ) ;
EditorFileSystem : : singleton - > scan_total = ratio ;
2016-01-05 13:36:24 +00:00
}
2017-03-05 15:44:50 +00:00
EditorFileSystem : : ScanProgress EditorFileSystem : : ScanProgress : : get_sub ( int p_current , int p_total ) const {
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
ScanProgress sp = * this ;
float slice = ( sp . hi - sp . low ) / p_total ;
sp . low + = slice * p_current ;
sp . hi = slice ;
2016-01-05 13:36:24 +00:00
return sp ;
2017-02-01 23:41:05 +00:00
}
2017-03-05 15:44:50 +00:00
bool EditorFileSystem : : _check_missing_imported_files ( const String & p_path ) {
2017-02-01 23:41:05 +00:00
if ( ! reimport_on_missing_imported_files )
return true ;
Error err ;
2017-03-05 15:44:50 +00:00
FileAccess * f = FileAccess : : open ( p_path + " .import " , FileAccess : : READ , & err ) ;
2017-02-01 23:41:05 +00:00
if ( ! f ) {
2017-03-05 15:44:50 +00:00
print_line ( " could not open import for " + p_path ) ;
2017-02-01 23:41:05 +00:00
return false ;
}
VariantParser : : StreamFile stream ;
2017-03-05 15:44:50 +00:00
stream . f = f ;
2017-02-01 23:41:05 +00:00
String assign ;
Variant value ;
VariantParser : : Tag next_tag ;
2017-03-05 15:44:50 +00:00
int lines = 0 ;
2017-02-01 23:41:05 +00:00
String error_text ;
List < String > to_check ;
2017-03-05 15:44:50 +00:00
while ( true ) {
2017-02-01 23:41:05 +00:00
2017-03-05 15:44:50 +00:00
assign = Variant ( ) ;
2017-02-01 23:41:05 +00:00
next_tag . fields . clear ( ) ;
2017-03-05 15:44:50 +00:00
next_tag . name = String ( ) ;
2017-02-01 23:41:05 +00:00
2017-03-05 15:44:50 +00:00
err = VariantParser : : parse_tag_assign_eof ( & stream , lines , error_text , next_tag , assign , value , NULL , true ) ;
if ( err = = ERR_FILE_EOF ) {
2017-02-01 23:41:05 +00:00
memdelete ( f ) ;
return OK ;
2017-03-05 15:44:50 +00:00
} else if ( err ! = OK ) {
ERR_PRINTS ( " ResourceFormatImporter::load - " + p_path + " .import: " + itos ( lines ) + " error: " + error_text ) ;
2017-02-01 23:41:05 +00:00
memdelete ( f ) ;
return false ;
}
2017-03-05 15:44:50 +00:00
if ( assign ! = String ( ) ) {
2017-02-01 23:41:05 +00:00
if ( assign . begins_with ( " path " ) ) {
to_check . push_back ( value ) ;
2017-03-05 15:44:50 +00:00
} else if ( assign = = " files " ) {
2017-02-01 23:41:05 +00:00
Array fa = value ;
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < fa . size ( ) ; i + + ) {
2017-02-01 23:41:05 +00:00
to_check . push_back ( fa [ i ] ) ;
}
}
2017-03-05 15:44:50 +00:00
} else if ( next_tag . name ! = " remap " & & next_tag . name ! = " deps " ) {
2017-02-01 23:41:05 +00:00
break ;
}
}
2016-01-05 13:36:24 +00:00
2017-02-01 23:41:05 +00:00
memdelete ( f ) ;
2017-03-05 15:44:50 +00:00
for ( List < String > : : Element * E = to_check . front ( ) ; E ; E = E - > next ( ) ) {
2017-02-01 23:41:05 +00:00
if ( ! FileAccess : : exists ( E - > get ( ) ) ) {
return false ;
}
}
return true ;
2016-01-05 13:36:24 +00:00
}
2017-02-01 23:41:05 +00:00
2017-03-05 15:44:50 +00:00
void EditorFileSystem : : _scan_new_dir ( EditorFileSystemDirectory * p_dir , DirAccess * da , const ScanProgress & p_progress ) {
2016-01-05 13:36:24 +00:00
List < String > dirs ;
List < String > files ;
String cd = da - > get_current_dir ( ) ;
p_dir - > modified_time = FileAccess : : get_modified_time ( cd ) ;
da - > list_dir_begin ( ) ;
while ( true ) {
bool isdir ;
String f = da - > get_next ( & isdir ) ;
2017-03-05 15:44:50 +00:00
if ( f = = " " )
2016-01-05 13:36:24 +00:00
break ;
if ( isdir ) {
if ( f . begins_with ( " . " ) ) //ignore hidden and . / ..
continue ;
2017-05-01 15:44:52 +00:00
if ( FileAccess : : exists ( cd . plus_file ( f ) . plus_file ( " project.godot " ) ) ) // skip if another project inside this
2016-01-05 13:36:24 +00:00
continue ;
2017-08-06 14:43:48 +00:00
if ( FileAccess : : exists ( cd . plus_file ( f ) . plus_file ( " .gdignore " ) ) ) // skip if another project inside this
continue ;
2016-01-05 13:36:24 +00:00
dirs . push_back ( f ) ;
} else {
files . push_back ( f ) ;
}
}
da - > list_dir_end ( ) ;
2017-05-11 19:07:59 +00:00
dirs . sort_custom < NaturalNoCaseComparator > ( ) ;
files . sort_custom < NaturalNoCaseComparator > ( ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
int total = dirs . size ( ) + files . size ( ) ;
int idx = 0 ;
2016-06-28 11:26:07 +00:00
2017-03-05 15:44:50 +00:00
for ( List < String > : : Element * E = dirs . front ( ) ; E ; E = E - > next ( ) , idx + + ) {
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
if ( da - > change_dir ( E - > get ( ) ) = = OK ) {
2016-01-05 13:36:24 +00:00
2016-06-28 11:26:07 +00:00
String d = da - > get_current_dir ( ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
if ( d = = cd | | ! d . begins_with ( cd ) ) {
2016-06-28 11:26:07 +00:00
da - > change_dir ( cd ) ; //avoid recursion
} else {
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * efd = memnew ( EditorFileSystemDirectory ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
efd - > parent = p_dir ;
efd - > name = E - > get ( ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
_scan_new_dir ( efd , da , p_progress . get_sub ( idx , total ) ) ;
2016-06-28 11:26:07 +00:00
2017-03-05 15:44:50 +00:00
int idx = 0 ;
for ( int i = 0 ; i < p_dir - > subdirs . size ( ) ; i + + ) {
2016-06-28 11:26:07 +00:00
2017-03-05 15:44:50 +00:00
if ( efd - > name < p_dir - > subdirs [ i ] - > name )
2016-06-28 11:26:07 +00:00
break ;
idx + + ;
}
2017-03-05 15:44:50 +00:00
if ( idx = = p_dir - > subdirs . size ( ) ) {
2016-06-28 11:26:07 +00:00
p_dir - > subdirs . push_back ( efd ) ;
} else {
2017-03-05 15:44:50 +00:00
p_dir - > subdirs . insert ( idx , efd ) ;
2016-06-28 11:26:07 +00:00
}
da - > change_dir ( " .. " ) ;
}
2016-01-05 13:36:24 +00:00
} else {
2017-03-05 15:44:50 +00:00
ERR_PRINTS ( " Cannot go into subdir: " + E - > get ( ) ) ;
2016-01-05 13:36:24 +00:00
}
2017-03-05 15:44:50 +00:00
p_progress . update ( idx , total ) ;
2016-01-05 13:36:24 +00:00
}
2017-03-05 15:44:50 +00:00
for ( List < String > : : Element * E = files . front ( ) ; E ; E = E - > next ( ) , idx + + ) {
2017-02-01 12:45:45 +00:00
2017-01-14 03:51:09 +00:00
String ext = E - > get ( ) . get_extension ( ) . to_lower ( ) ;
2017-02-01 12:45:45 +00:00
if ( ! valid_extensions . has ( ext ) ) {
2016-01-05 13:36:24 +00:00
continue ; //invalid
2017-02-01 12:45:45 +00:00
}
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory : : FileInfo * fi = memnew ( EditorFileSystemDirectory : : FileInfo ) ;
fi - > file = E - > get ( ) ;
2016-01-05 13:36:24 +00:00
String path = cd . plus_file ( fi - > file ) ;
FileCache * fc = file_cache . getptr ( path ) ;
uint64_t mt = FileAccess : : get_modified_time ( path ) ;
2017-02-01 12:45:45 +00:00
if ( import_extensions . has ( ext ) ) {
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
//is imported
uint64_t import_mt = 0 ;
if ( FileAccess : : exists ( path + " .import " ) ) {
import_mt = FileAccess : : get_modified_time ( path + " .import " ) ;
2017-02-01 12:45:45 +00:00
}
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
if ( fc & & fc - > modification_time = = mt & & fc - > import_modification_time = = import_mt & & _check_missing_imported_files ( path ) ) {
2017-02-04 14:12:03 +00:00
2017-03-05 15:44:50 +00:00
fi - > type = fc - > type ;
2017-08-17 20:02:43 +00:00
fi - > deps = fc - > deps ;
2017-03-05 15:44:50 +00:00
fi - > modified_time = fc - > modification_time ;
fi - > import_modified_time = fc - > import_modification_time ;
2017-08-29 22:50:58 +00:00
fi - > import_valid = fc - > import_valid ;
2017-08-15 19:27:15 +00:00
if ( fc - > type = = String ( ) ) {
fi - > type = ResourceLoader : : get_resource_type ( path ) ;
//there is also the chance that file type changed due to reimport, must probably check this somehow here (or kind of note it for next time in another file?)
2017-08-17 20:02:43 +00:00
//note: I think this should not happen any longer..
2017-08-15 19:27:15 +00:00
}
2017-02-01 12:45:45 +00:00
} else {
2017-03-05 15:44:50 +00:00
fi - > type = ResourceFormatImporter : : get_singleton ( ) - > get_resource_type ( path ) ;
fi - > modified_time = 0 ;
fi - > import_modified_time = 0 ;
2017-08-29 22:50:58 +00:00
fi - > import_valid = ResourceLoader : : is_import_valid ( path ) ;
2016-01-05 13:36:24 +00:00
ItemAction ia ;
2017-03-05 15:44:50 +00:00
ia . action = ItemAction : : ACTION_FILE_REIMPORT ;
ia . dir = p_dir ;
ia . file = E - > get ( ) ;
2016-01-05 13:36:24 +00:00
scan_actions . push_back ( ia ) ;
}
2016-05-27 17:18:40 +00:00
} else {
2017-02-01 12:45:45 +00:00
2017-08-17 20:02:43 +00:00
if ( fc & & fc - > modification_time = = mt ) {
//not imported, so just update type if changed
2017-03-05 15:44:50 +00:00
fi - > type = fc - > type ;
fi - > modified_time = fc - > modification_time ;
2017-08-17 20:02:43 +00:00
fi - > deps = fc - > deps ;
2017-03-05 15:44:50 +00:00
fi - > import_modified_time = 0 ;
2017-08-29 22:50:58 +00:00
fi - > import_valid = true ;
2017-02-01 12:45:45 +00:00
} else {
2017-08-17 20:02:43 +00:00
//new or modified time
2017-03-05 15:44:50 +00:00
fi - > type = ResourceLoader : : get_resource_type ( path ) ;
2017-08-17 20:02:43 +00:00
fi - > deps = _get_dependencies ( path ) ;
2017-03-05 15:44:50 +00:00
fi - > modified_time = mt ;
fi - > import_modified_time = 0 ;
2017-08-29 22:50:58 +00:00
fi - > import_valid = true ;
2017-02-01 12:45:45 +00:00
}
2016-01-05 13:36:24 +00:00
}
p_dir - > files . push_back ( fi ) ;
2017-03-05 15:44:50 +00:00
p_progress . update ( idx , total ) ;
2016-01-05 13:36:24 +00:00
}
}
2017-03-05 15:44:50 +00:00
void EditorFileSystem : : _scan_fs_changes ( EditorFileSystemDirectory * p_dir , const ScanProgress & p_progress ) {
2016-01-05 13:36:24 +00:00
uint64_t current_mtime = FileAccess : : get_modified_time ( p_dir - > get_path ( ) ) ;
2017-03-05 15:44:50 +00:00
bool updated_dir = false ;
2017-02-01 12:45:45 +00:00
String cd = p_dir - > get_path ( ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
if ( current_mtime ! = p_dir - > modified_time ) {
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
updated_dir = true ;
p_dir - > modified_time = current_mtime ;
2016-01-05 13:36:24 +00:00
//ooooops, dir changed, see what's going on
//first mark everything as veryfied
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_dir - > files . size ( ) ; i + + ) {
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
p_dir - > files [ i ] - > verified = false ;
2016-01-05 13:36:24 +00:00
}
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_dir - > subdirs . size ( ) ; i + + ) {
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
p_dir - > get_subdir ( i ) - > verified = false ;
2016-01-05 13:36:24 +00:00
}
//then scan files and directories and check what's different
DirAccess * da = DirAccess : : create ( DirAccess : : ACCESS_RESOURCES ) ;
2017-02-01 12:45:45 +00:00
2016-01-05 13:36:24 +00:00
da - > change_dir ( cd ) ;
da - > list_dir_begin ( ) ;
while ( true ) {
bool isdir ;
2017-04-29 15:56:51 +00:00
String f = da - > get_next ( & isdir ) ;
if ( f = = " " )
2016-01-05 13:36:24 +00:00
break ;
if ( isdir ) {
2017-04-29 15:56:51 +00:00
if ( f . begins_with ( " . " ) ) //ignore hidden and . / ..
2016-01-05 13:36:24 +00:00
continue ;
2017-04-29 15:56:51 +00:00
int idx = p_dir - > find_dir_index ( f ) ;
2017-03-05 15:44:50 +00:00
if ( idx = = - 1 ) {
2016-01-05 13:36:24 +00:00
2017-05-01 15:44:52 +00:00
if ( FileAccess : : exists ( cd . plus_file ( f ) . plus_file ( " project.godot " ) ) ) // skip if another project inside this
2016-01-05 13:36:24 +00:00
continue ;
2017-08-06 14:43:48 +00:00
if ( FileAccess : : exists ( cd . plus_file ( f ) . plus_file ( " .gdignore " ) ) ) // skip if another project inside this
continue ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * efd = memnew ( EditorFileSystemDirectory ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
efd - > parent = p_dir ;
2017-04-29 15:56:51 +00:00
efd - > name = f ;
2016-01-05 13:36:24 +00:00
DirAccess * d = DirAccess : : create ( DirAccess : : ACCESS_RESOURCES ) ;
2017-04-29 15:56:51 +00:00
d - > change_dir ( cd . plus_file ( f ) ) ;
2017-03-05 15:44:50 +00:00
_scan_new_dir ( efd , d , p_progress . get_sub ( 1 , 1 ) ) ;
2016-01-05 13:36:24 +00:00
memdelete ( d ) ;
ItemAction ia ;
2017-03-05 15:44:50 +00:00
ia . action = ItemAction : : ACTION_DIR_ADD ;
ia . dir = p_dir ;
2017-04-29 15:56:51 +00:00
ia . file = f ;
2017-03-05 15:44:50 +00:00
ia . new_dir = efd ;
2016-01-05 13:36:24 +00:00
scan_actions . push_back ( ia ) ;
} else {
2017-03-05 15:44:50 +00:00
p_dir - > subdirs [ idx ] - > verified = true ;
2016-01-05 13:36:24 +00:00
}
} else {
2017-04-29 15:56:51 +00:00
String ext = f . get_extension ( ) . to_lower ( ) ;
2016-01-05 13:36:24 +00:00
if ( ! valid_extensions . has ( ext ) )
continue ; //invalid
2017-04-29 15:56:51 +00:00
int idx = p_dir - > find_file_index ( f ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
if ( idx = = - 1 ) {
2016-01-05 13:36:24 +00:00
//never seen this file, add actition to add it
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory : : FileInfo * fi = memnew ( EditorFileSystemDirectory : : FileInfo ) ;
2017-04-29 15:56:51 +00:00
fi - > file = f ;
2016-01-05 13:36:24 +00:00
String path = cd . plus_file ( fi - > file ) ;
2017-03-05 15:44:50 +00:00
fi - > modified_time = FileAccess : : get_modified_time ( path ) ;
fi - > import_modified_time = 0 ;
fi - > type = ResourceLoader : : get_resource_type ( path ) ;
2017-08-29 22:50:58 +00:00
fi - > import_valid = ResourceLoader : : is_import_valid ( path ) ;
2016-01-05 13:36:24 +00:00
{
ItemAction ia ;
2017-03-05 15:44:50 +00:00
ia . action = ItemAction : : ACTION_FILE_ADD ;
ia . dir = p_dir ;
2017-04-29 15:56:51 +00:00
ia . file = f ;
2017-03-05 15:44:50 +00:00
ia . new_file = fi ;
2016-01-05 13:36:24 +00:00
scan_actions . push_back ( ia ) ;
2017-02-01 12:45:45 +00:00
}
if ( import_extensions . has ( ext ) ) {
//if it can be imported, and it was added, it needs to be reimported
2016-01-05 13:36:24 +00:00
ItemAction ia ;
2017-03-05 15:44:50 +00:00
ia . action = ItemAction : : ACTION_FILE_REIMPORT ;
ia . dir = p_dir ;
2017-04-29 15:56:51 +00:00
ia . file = f ;
2016-01-05 13:36:24 +00:00
scan_actions . push_back ( ia ) ;
}
} else {
2017-03-05 15:44:50 +00:00
p_dir - > files [ idx ] - > verified = true ;
2016-01-05 13:36:24 +00:00
}
}
}
2016-06-28 12:47:03 +00:00
2016-01-05 13:36:24 +00:00
da - > list_dir_end ( ) ;
memdelete ( da ) ;
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_dir - > files . size ( ) ; i + + ) {
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
if ( updated_dir & & ! p_dir - > files [ i ] - > verified ) {
//this file was removed, add action to remove it
ItemAction ia ;
2017-03-05 15:44:50 +00:00
ia . action = ItemAction : : ACTION_FILE_REMOVE ;
ia . dir = p_dir ;
ia . file = p_dir - > files [ i ] - > file ;
2016-01-05 13:36:24 +00:00
scan_actions . push_back ( ia ) ;
continue ;
}
2016-07-03 16:15:15 +00:00
2017-02-01 12:45:45 +00:00
if ( import_extensions . has ( p_dir - > files [ i ] - > file . get_extension ( ) . to_lower ( ) ) ) {
//check here if file must be imported or not
String path = cd . plus_file ( p_dir - > files [ i ] - > file ) ;
uint64_t mt = FileAccess : : get_modified_time ( path ) ;
2017-03-05 15:44:50 +00:00
bool reimport = false ;
2017-02-01 12:45:45 +00:00
2017-03-05 15:44:50 +00:00
if ( mt ! = p_dir - > files [ i ] - > modified_time ) {
reimport = true ; //it was modified, must be reimported.
} else if ( ! FileAccess : : exists ( path + " .import " ) ) {
reimport = true ; //no .import file, obviously reimport
2017-02-01 12:45:45 +00:00
} else {
2017-03-05 15:44:50 +00:00
uint64_t import_mt = FileAccess : : get_modified_time ( path + " .import " ) ;
if ( import_mt ! = p_dir - > files [ i ] - > import_modified_time ) {
reimport = true ;
2017-02-01 23:41:05 +00:00
} else if ( ! _check_missing_imported_files ( path ) ) {
2017-03-05 15:44:50 +00:00
reimport = true ;
2017-02-01 12:45:45 +00:00
}
}
if ( reimport ) {
ItemAction ia ;
2017-03-05 15:44:50 +00:00
ia . action = ItemAction : : ACTION_FILE_REIMPORT ;
ia . dir = p_dir ;
ia . file = p_dir - > files [ i ] - > file ;
2017-02-01 12:45:45 +00:00
scan_actions . push_back ( ia ) ;
}
2014-02-10 01:10:30 +00:00
}
2016-07-03 16:15:15 +00:00
EditorResourcePreview : : get_singleton ( ) - > check_for_invalidation ( p_dir - > get_file_path ( i ) ) ;
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_dir - > subdirs . size ( ) ; i + + ) {
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
if ( updated_dir & & ! p_dir - > subdirs [ i ] - > verified ) {
//this directory was removed, add action to remove it
ItemAction ia ;
2017-03-05 15:44:50 +00:00
ia . action = ItemAction : : ACTION_DIR_REMOVE ;
ia . dir = p_dir - > subdirs [ i ] ;
2016-01-05 13:36:24 +00:00
scan_actions . push_back ( ia ) ;
continue ;
}
2017-03-05 15:44:50 +00:00
_scan_fs_changes ( p_dir - > get_subdir ( i ) , p_progress ) ;
2014-02-10 01:10:30 +00:00
}
}
2017-08-14 23:13:14 +00:00
void EditorFileSystem : : _delete_internal_files ( String p_file ) {
if ( FileAccess : : exists ( p_file + " .import " ) ) {
List < String > paths ;
ResourceFormatImporter : : get_singleton ( ) - > get_internal_resource_path_list ( p_file , & paths ) ;
DirAccess * da = DirAccess : : create ( DirAccess : : ACCESS_RESOURCES ) ;
for ( List < String > : : Element * E = paths . front ( ) ; E ; E = E - > next ( ) ) {
da - > remove ( E - > get ( ) ) ;
}
da - > remove ( p_file + " .import " ) ;
memdelete ( da ) ;
}
}
2014-02-10 01:10:30 +00:00
void EditorFileSystem : : _thread_func_sources ( void * _userdata ) {
2017-03-05 15:44:50 +00:00
EditorFileSystem * efs = ( EditorFileSystem * ) _userdata ;
2014-02-10 01:10:30 +00:00
if ( efs - > filesystem ) {
2017-03-05 15:44:50 +00:00
EditorProgressBG pr ( " sources " , TTR ( " ScanSources " ) , 1000 ) ;
2016-01-05 13:36:24 +00:00
ScanProgress sp ;
2017-03-05 15:44:50 +00:00
sp . progress = & pr ;
sp . hi = 1 ;
sp . low = 0 ;
efs - > _scan_fs_changes ( efs - > filesystem , sp ) ;
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
efs - > scanning_changes_done = true ;
2014-02-10 01:10:30 +00:00
}
void EditorFileSystem : : get_changed_sources ( List < String > * r_changed ) {
2017-03-05 15:44:50 +00:00
* r_changed = sources_changed ;
2014-02-10 01:10:30 +00:00
}
2017-02-01 12:45:45 +00:00
void EditorFileSystem : : scan_changes ( ) {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( scanning | | scanning_changes | | thread )
2014-02-10 01:10:30 +00:00
return ;
2017-02-01 12:45:45 +00:00
_update_extensions ( ) ;
2014-02-10 01:10:30 +00:00
sources_changed . clear ( ) ;
2017-03-05 15:44:50 +00:00
scanning_changes = true ;
scanning_changes_done = false ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
abort_scan = false ;
2014-02-10 01:10:30 +00:00
if ( ! use_threads ) {
2016-01-05 13:36:24 +00:00
if ( filesystem ) {
2017-03-05 15:44:50 +00:00
EditorProgressBG pr ( " sources " , TTR ( " ScanSources " ) , 1000 ) ;
2016-01-05 13:36:24 +00:00
ScanProgress sp ;
2017-03-05 15:44:50 +00:00
sp . progress = & pr ;
sp . hi = 1 ;
sp . low = 0 ;
scan_total = 0 ;
_scan_fs_changes ( filesystem , sp ) ;
2016-01-05 13:36:24 +00:00
if ( _update_scan_actions ( ) )
emit_signal ( " filesystem_changed " ) ;
}
2017-03-05 15:44:50 +00:00
scanning_changes = false ;
scanning_changes_done = true ;
emit_signal ( " sources_changed " , sources_changed . size ( ) > 0 ) ;
2014-02-10 01:10:30 +00:00
} else {
ERR_FAIL_COND ( thread_sources ) ;
set_process ( true ) ;
2017-03-05 15:44:50 +00:00
scan_total = 0 ;
2014-02-10 01:10:30 +00:00
Thread : : Settings s ;
2017-03-05 15:44:50 +00:00
s . priority = Thread : : PRIORITY_LOW ;
thread_sources = Thread : : create ( _thread_func_sources , this , s ) ;
2014-02-10 01:10:30 +00:00
}
}
void EditorFileSystem : : _notification ( int p_what ) {
2017-03-05 15:44:50 +00:00
switch ( p_what ) {
2014-02-10 01:10:30 +00:00
2014-11-06 00:20:42 +00:00
case NOTIFICATION_ENTER_TREE : {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
scan ( ) ;
2014-02-10 01:10:30 +00:00
} break ;
2014-11-06 00:20:42 +00:00
case NOTIFICATION_EXIT_TREE : {
2014-02-10 01:10:30 +00:00
if ( use_threads & & thread ) {
//abort thread if in progress
2017-03-05 15:44:50 +00:00
abort_scan = true ;
while ( scanning ) {
2014-02-10 01:10:30 +00:00
OS : : get_singleton ( ) - > delay_usec ( 1000 ) ;
}
Thread : : wait_to_finish ( thread ) ;
memdelete ( thread ) ;
2017-03-05 15:44:50 +00:00
thread = NULL ;
2016-05-04 13:28:37 +00:00
WARN_PRINTS ( " Scan thread aborted... " ) ;
2014-02-10 01:10:30 +00:00
set_process ( false ) ;
}
if ( filesystem )
memdelete ( filesystem ) ;
2016-01-05 13:36:24 +00:00
if ( new_filesystem )
memdelete ( new_filesystem ) ;
2017-03-05 15:44:50 +00:00
filesystem = NULL ;
new_filesystem = NULL ;
2014-02-10 01:10:30 +00:00
} break ;
case NOTIFICATION_PROCESS : {
if ( use_threads ) {
2017-02-01 12:45:45 +00:00
if ( scanning_changes ) {
2014-02-10 01:10:30 +00:00
2017-02-01 12:45:45 +00:00
if ( scanning_changes_done ) {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
scanning_changes = false ;
2014-02-10 01:10:30 +00:00
set_process ( false ) ;
Thread : : wait_to_finish ( thread_sources ) ;
memdelete ( thread_sources ) ;
2017-03-05 15:44:50 +00:00
thread_sources = NULL ;
2016-01-05 13:36:24 +00:00
if ( _update_scan_actions ( ) )
emit_signal ( " filesystem_changed " ) ;
2017-03-05 15:44:50 +00:00
emit_signal ( " sources_changed " , sources_changed . size ( ) > 0 ) ;
2014-02-10 01:10:30 +00:00
}
} else if ( ! scanning ) {
set_process ( false ) ;
if ( filesystem )
memdelete ( filesystem ) ;
2017-03-05 15:44:50 +00:00
filesystem = new_filesystem ;
new_filesystem = NULL ;
2014-02-10 01:10:30 +00:00
Thread : : wait_to_finish ( thread ) ;
memdelete ( thread ) ;
2017-03-05 15:44:50 +00:00
thread = NULL ;
2016-01-05 13:36:24 +00:00
_update_scan_actions ( ) ;
2014-02-10 01:10:30 +00:00
emit_signal ( " filesystem_changed " ) ;
2017-03-05 15:44:50 +00:00
emit_signal ( " sources_changed " , sources_changed . size ( ) > 0 ) ;
2014-02-10 01:10:30 +00:00
}
}
} break ;
}
}
bool EditorFileSystem : : is_scanning ( ) const {
2017-02-06 03:38:39 +00:00
return scanning | | scanning_changes ;
2014-02-10 01:10:30 +00:00
}
float EditorFileSystem : : get_scanning_progress ( ) const {
2016-01-05 13:36:24 +00:00
return scan_total ;
2014-02-10 01:10:30 +00:00
}
EditorFileSystemDirectory * EditorFileSystem : : get_filesystem ( ) {
return filesystem ;
}
2017-03-05 15:44:50 +00:00
void EditorFileSystem : : _save_filesystem_cache ( EditorFileSystemDirectory * p_dir , FileAccess * p_file ) {
2014-02-10 01:10:30 +00:00
if ( ! p_dir )
return ; //none
2017-03-05 15:44:50 +00:00
p_file - > store_line ( " :: " + p_dir - > get_path ( ) + " :: " + String : : num ( p_dir - > modified_time ) ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_dir - > files . size ( ) ; i + + ) {
2014-02-10 01:10:30 +00:00
2017-08-29 22:50:58 +00:00
String s = p_dir - > files [ i ] - > file + " :: " + p_dir - > files [ i ] - > type + " :: " + itos ( p_dir - > files [ i ] - > modified_time ) + " :: " + itos ( p_dir - > files [ i ] - > import_modified_time ) + " :: " + itos ( p_dir - > files [ i ] - > import_valid ) ;
2017-03-05 15:44:50 +00:00
s + = " :: " ;
for ( int j = 0 ; j < p_dir - > files [ i ] - > deps . size ( ) ; j + + ) {
2015-08-23 23:15:56 +00:00
2017-03-05 15:44:50 +00:00
if ( j > 0 )
s + = " <> " ;
s + = p_dir - > files [ i ] - > deps [ j ] ;
2015-08-23 23:15:56 +00:00
}
2014-02-10 01:10:30 +00:00
p_file - > store_line ( s ) ;
}
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_dir - > subdirs . size ( ) ; i + + ) {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
_save_filesystem_cache ( p_dir - > subdirs [ i ] , p_file ) ;
2014-02-10 01:10:30 +00:00
}
}
2017-03-05 15:44:50 +00:00
bool EditorFileSystem : : _find_file ( const String & p_file , EditorFileSystemDirectory * * r_d , int & r_file_pos ) const {
2014-02-10 01:10:30 +00:00
//todo make faster
2016-01-05 13:36:24 +00:00
if ( ! filesystem | | scanning )
return false ;
2014-02-10 01:10:30 +00:00
2017-07-19 20:00:46 +00:00
String f = ProjectSettings : : get_singleton ( ) - > localize_path ( p_file ) ;
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
if ( ! f . begins_with ( " res:// " ) )
return false ;
2017-03-05 15:44:50 +00:00
f = f . substr ( 6 , f . length ( ) ) ;
f = f . replace ( " \\ " , " / " ) ;
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
Vector < String > path = f . split ( " / " ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( path . size ( ) = = 0 )
2016-01-05 13:36:24 +00:00
return false ;
2017-03-05 15:44:50 +00:00
String file = path [ path . size ( ) - 1 ] ;
path . resize ( path . size ( ) - 1 ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * fs = filesystem ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < path . size ( ) ; i + + ) {
2014-02-10 01:10:30 +00:00
2017-02-04 14:12:03 +00:00
if ( path [ i ] . begins_with ( " . " ) )
return false ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
int idx = - 1 ;
for ( int j = 0 ; j < fs - > get_subdir_count ( ) ; j + + ) {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( fs - > get_subdir ( j ) - > get_name ( ) = = path [ i ] ) {
idx = j ;
2016-01-05 13:36:24 +00:00
break ;
}
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( idx = = - 1 ) {
2016-01-05 13:36:24 +00:00
//does not exist, create i guess?
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * efsd = memnew ( EditorFileSystemDirectory ) ;
2017-06-16 20:32:46 +00:00
2017-03-05 15:44:50 +00:00
efsd - > name = path [ i ] ;
2017-06-16 20:32:46 +00:00
efsd - > parent = fs ;
2017-03-05 15:44:50 +00:00
int idx2 = 0 ;
for ( int j = 0 ; j < fs - > get_subdir_count ( ) ; j + + ) {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( efsd - > name < fs - > get_subdir ( j ) - > get_name ( ) )
2016-01-05 13:36:24 +00:00
break ;
idx2 + + ;
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( idx2 = = fs - > get_subdir_count ( ) )
2016-01-05 13:36:24 +00:00
fs - > subdirs . push_back ( efsd ) ;
else
2017-03-05 15:44:50 +00:00
fs - > subdirs . insert ( idx2 , efsd ) ;
fs = efsd ;
2016-01-05 13:36:24 +00:00
} else {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
fs = fs - > get_subdir ( idx ) ;
2016-01-05 13:36:24 +00:00
}
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
int cpos = - 1 ;
for ( int i = 0 ; i < fs - > files . size ( ) ; i + + ) {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( fs - > files [ i ] - > file = = file ) {
cpos = i ;
2016-01-05 13:36:24 +00:00
break ;
}
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
r_file_pos = cpos ;
* r_d = fs ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( cpos ! = - 1 ) {
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
return true ;
2017-03-05 15:44:50 +00:00
} else {
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
return false ;
}
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
String EditorFileSystem : : get_file_type ( const String & p_file ) const {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * fs = NULL ;
int cpos = - 1 ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( ! _find_file ( p_file , & fs , cpos ) ) {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
return " " ;
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
return fs - > files [ cpos ] - > type ;
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * EditorFileSystem : : find_file ( const String & p_file , int * r_index ) const {
2016-05-27 17:18:40 +00:00
if ( ! filesystem | | scanning )
2017-03-05 15:44:50 +00:00
return NULL ;
2016-05-27 17:18:40 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * fs = NULL ;
int cpos = - 1 ;
if ( ! _find_file ( p_file , & fs , cpos ) ) {
2016-05-27 17:18:40 +00:00
2017-03-05 15:44:50 +00:00
return NULL ;
2016-05-27 17:18:40 +00:00
}
if ( r_index )
2017-03-05 15:44:50 +00:00
* r_index = cpos ;
2016-05-27 17:18:40 +00:00
return fs ;
}
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * EditorFileSystem : : get_filesystem_path ( const String & p_path ) {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( ! filesystem | | scanning )
return NULL ;
2014-02-10 01:10:30 +00:00
2017-07-19 20:00:46 +00:00
String f = ProjectSettings : : get_singleton ( ) - > localize_path ( p_path ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( ! f . begins_with ( " res:// " ) )
return NULL ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
f = f . substr ( 6 , f . length ( ) ) ;
f = f . replace ( " \\ " , " / " ) ;
if ( f = = String ( ) )
return filesystem ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( f . ends_with ( " / " ) )
f = f . substr ( 0 , f . length ( ) - 1 ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
Vector < String > path = f . split ( " / " ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( path . size ( ) = = 0 )
return NULL ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * fs = filesystem ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < path . size ( ) ; i + + ) {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
int idx = - 1 ;
for ( int j = 0 ; j < fs - > get_subdir_count ( ) ; j + + ) {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( fs - > get_subdir ( j ) - > get_name ( ) = = path [ i ] ) {
idx = j ;
break ;
}
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( idx = = - 1 ) {
return NULL ;
} else {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
fs = fs - > get_subdir ( idx ) ;
}
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
return fs ;
2014-02-10 01:10:30 +00:00
}
2017-08-17 20:02:43 +00:00
void EditorFileSystem : : _save_late_updated_files ( ) {
//files that already existed, and were modified, need re-scanning for dependencies upon project restart. This is done via saving this special file
2017-08-29 22:50:58 +00:00
String fscache = EditorSettings : : get_singleton ( ) - > get_project_settings_path ( ) . plus_file ( " filesystem_update3 " ) ;
2017-08-17 20:02:43 +00:00
FileAccessRef f = FileAccess : : open ( fscache , FileAccess : : WRITE ) ;
for ( Set < String > : : Element * E = late_update_files . front ( ) ; E ; E = E - > next ( ) ) {
f - > store_line ( E - > get ( ) ) ;
}
}
2017-03-05 15:44:50 +00:00
void EditorFileSystem : : _resource_saved ( const String & p_path ) {
2016-01-29 11:41:22 +00:00
2014-02-10 01:10:30 +00:00
EditorFileSystem : : get_singleton ( ) - > update_file ( p_path ) ;
}
2017-08-17 20:02:43 +00:00
Vector < String > EditorFileSystem : : _get_dependencies ( const String & p_path ) {
List < String > deps ;
ResourceLoader : : get_dependencies ( p_path , & deps ) ;
Vector < String > ret ;
for ( List < String > : : Element * E = deps . front ( ) ; E ; E = E - > next ( ) ) {
ret . push_back ( E - > get ( ) ) ;
}
return ret ;
}
2017-03-05 15:44:50 +00:00
void EditorFileSystem : : update_file ( const String & p_file ) {
2014-11-12 14:23:23 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * fs = NULL ;
int cpos = - 1 ;
2014-11-12 14:23:23 +00:00
2017-03-05 15:44:50 +00:00
if ( ! _find_file ( p_file , & fs , cpos ) ) {
2014-11-12 14:23:23 +00:00
2017-03-05 15:44:50 +00:00
if ( ! fs )
return ;
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( ! FileAccess : : exists ( p_file ) ) {
//was removed
2017-08-14 23:13:14 +00:00
_delete_internal_files ( p_file ) ;
2017-03-05 15:44:50 +00:00
memdelete ( fs - > files [ cpos ] ) ;
fs - > files . remove ( cpos ) ;
call_deferred ( " emit_signal " , " filesystem_changed " ) ; //update later
2014-02-10 01:10:30 +00:00
return ;
2017-03-05 15:44:50 +00:00
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
String type = ResourceLoader : : get_resource_type ( p_file ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( cpos = = - 1 ) {
2014-02-10 01:10:30 +00:00
2017-08-17 20:02:43 +00:00
//the file did not exist, it was added
late_added_files . insert ( p_file ) ; //remember that it was added. This mean it will be scanned and imported on editor restart
2017-03-05 15:44:50 +00:00
int idx = 0 ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < fs - > files . size ( ) ; i + + ) {
if ( p_file < fs - > files [ i ] - > file )
break ;
idx + + ;
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory : : FileInfo * fi = memnew ( EditorFileSystemDirectory : : FileInfo ) ;
fi - > file = p_file . get_file ( ) ;
fi - > import_modified_time = 0 ;
2017-08-29 22:50:58 +00:00
fi - > import_valid = ResourceLoader : : is_import_valid ( p_file ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( idx = = fs - > files . size ( ) ) {
fs - > files . push_back ( fi ) ;
} else {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
fs - > files . insert ( idx , fi ) ;
}
cpos = idx ;
2017-08-17 20:02:43 +00:00
} else {
//the file exists and it was updated, and was not added in this step.
//this means we must force upon next restart to scan it again, to get proper type and dependencies
late_update_files . insert ( p_file ) ;
_save_late_updated_files ( ) ; //files need to be updated in the re-scan
2017-03-05 15:44:50 +00:00
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
fs - > files [ cpos ] - > type = type ;
fs - > files [ cpos ] - > modified_time = FileAccess : : get_modified_time ( p_file ) ;
2017-08-17 20:02:43 +00:00
fs - > files [ cpos ] - > deps = _get_dependencies ( p_file ) ;
2017-08-29 22:50:58 +00:00
fs - > files [ cpos ] - > import_valid = ResourceLoader : : is_import_valid ( p_file ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
EditorResourcePreview : : get_singleton ( ) - > call_deferred ( " check_for_invalidation " , p_file ) ;
call_deferred ( " emit_signal " , " filesystem_changed " ) ; //update later
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
void EditorFileSystem : : _reimport_file ( const String & p_file ) {
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * fs = NULL ;
int cpos = - 1 ;
bool found = _find_file ( p_file , & fs , cpos ) ;
2017-02-01 12:45:45 +00:00
ERR_FAIL_COND ( ! found ) ;
//try to obtain existing params
2017-03-05 15:44:50 +00:00
Map < StringName , Variant > params ;
2017-02-01 12:45:45 +00:00
String importer_name ;
2017-03-05 15:44:50 +00:00
if ( FileAccess : : exists ( p_file + " .import " ) ) {
2017-07-23 21:48:05 +00:00
//use existing
2017-02-01 12:45:45 +00:00
Ref < ConfigFile > cf ;
cf . instance ( ) ;
2017-03-05 15:44:50 +00:00
Error err = cf - > load ( p_file + " .import " ) ;
if ( err = = OK ) {
2017-02-01 12:45:45 +00:00
List < String > sk ;
2017-03-05 15:44:50 +00:00
cf - > get_section_keys ( " params " , & sk ) ;
for ( List < String > : : Element * E = sk . front ( ) ; E ; E = E - > next ( ) ) {
params [ E - > get ( ) ] = cf - > get_value ( " params " , E - > get ( ) ) ;
2017-02-01 12:45:45 +00:00
}
2017-03-05 15:44:50 +00:00
importer_name = cf - > get_value ( " remap " , " importer " ) ;
2017-02-01 12:45:45 +00:00
}
2017-08-17 20:02:43 +00:00
} else {
late_added_files . insert ( p_file ) ; //imported files do not call update_file(), but just in case..
2017-02-01 12:45:45 +00:00
}
Ref < ResourceImporter > importer ;
2017-07-23 21:48:05 +00:00
bool load_default = false ;
2017-02-01 12:45:45 +00:00
//find the importer
2017-03-05 15:44:50 +00:00
if ( importer_name ! = " " ) {
2017-02-01 12:45:45 +00:00
importer = ResourceFormatImporter : : get_singleton ( ) - > get_importer_by_name ( importer_name ) ;
}
if ( importer . is_null ( ) ) {
//not found by name, find by extension
importer = ResourceFormatImporter : : get_singleton ( ) - > get_importer_by_extension ( p_file . get_extension ( ) ) ;
2017-07-23 21:48:05 +00:00
load_default = true ;
2017-02-01 12:45:45 +00:00
if ( importer . is_null ( ) ) {
ERR_PRINT ( " BUG: File queued for import, but can't be imported! " ) ;
ERR_FAIL ( ) ;
}
}
//mix with default params, in case a parameter is missing
List < ResourceImporter : : ImportOption > opts ;
importer - > get_import_options ( & opts ) ;
2017-03-05 15:44:50 +00:00
for ( List < ResourceImporter : : ImportOption > : : Element * E = opts . front ( ) ; E ; E = E - > next ( ) ) {
2017-02-01 12:45:45 +00:00
if ( ! params . has ( E - > get ( ) . option . name ) ) { //this one is not present
2017-03-05 15:44:50 +00:00
params [ E - > get ( ) . option . name ] = E - > get ( ) . default_value ;
2017-02-01 12:45:45 +00:00
}
}
2017-10-05 18:34:34 +00:00
if ( load_default & & ProjectSettings : : get_singleton ( ) - > has_setting ( " importer_defaults/ " + importer - > get_importer_name ( ) ) ) {
2017-07-23 21:48:05 +00:00
//use defaults if exist
Dictionary d = ProjectSettings : : get_singleton ( ) - > get ( " importer_defaults/ " + importer - > get_importer_name ( ) ) ;
List < Variant > v ;
d . get_key_list ( & v ) ;
for ( List < Variant > : : Element * E = v . front ( ) ; E ; E = E - > next ( ) ) {
params [ E - > get ( ) ] = d [ E - > get ( ) ] ;
}
}
2017-02-01 12:45:45 +00:00
//finally, perform import!!
String base_path = ResourceFormatImporter : : get_singleton ( ) - > get_import_base_path ( p_file ) ;
List < String > import_variants ;
2017-02-01 23:41:05 +00:00
List < String > gen_files ;
2017-02-01 12:45:45 +00:00
2017-03-05 15:44:50 +00:00
Error err = importer - > import ( p_file , base_path , params , & import_variants , & gen_files ) ;
2017-02-01 12:45:45 +00:00
2017-03-05 15:44:50 +00:00
if ( err ! = OK ) {
ERR_PRINTS ( " Error importing: " + p_file ) ;
2017-02-01 23:41:05 +00:00
}
2017-02-01 12:45:45 +00:00
//as import is complete, save the .import file
2017-03-05 15:44:50 +00:00
FileAccess * f = FileAccess : : open ( p_file + " .import " , FileAccess : : WRITE ) ;
2017-02-01 12:45:45 +00:00
ERR_FAIL_COND ( ! f ) ;
//write manually, as order matters ([remap] has to go first for performance).
f - > store_line ( " [remap] " ) ;
f - > store_line ( " " ) ;
2017-03-05 15:44:50 +00:00
f - > store_line ( " importer= \" " + importer - > get_importer_name ( ) + " \" " ) ;
if ( importer - > get_resource_type ( ) ! = " " ) {
f - > store_line ( " type= \" " + importer - > get_resource_type ( ) + " \" " ) ;
2017-02-01 23:41:05 +00:00
}
2017-02-01 12:45:45 +00:00
2017-08-29 22:50:58 +00:00
if ( err = = OK ) {
2017-02-06 03:38:39 +00:00
2017-08-29 22:50:58 +00:00
if ( importer - > get_save_extension ( ) = = " " ) {
//no path
} else if ( import_variants . size ( ) ) {
//import with variants
for ( List < String > : : Element * E = import_variants . front ( ) ; E ; E = E - > next ( ) ) {
2017-02-06 03:38:39 +00:00
2017-08-29 22:50:58 +00:00
String path = base_path . c_escape ( ) + " . " + E - > get ( ) + " . " + importer - > get_save_extension ( ) ;
f - > store_line ( " path. " + E - > get ( ) + " = \" " + path + " \" " ) ;
}
} else {
f - > store_line ( " path= \" " + base_path + " . " + importer - > get_save_extension ( ) + " \" " ) ;
2017-02-01 12:45:45 +00:00
}
2017-08-29 22:50:58 +00:00
2017-02-01 12:45:45 +00:00
} else {
2017-08-29 22:50:58 +00:00
f - > store_line ( " valid=false " ) ;
2017-02-01 12:45:45 +00:00
}
f - > store_line ( " " ) ;
2017-08-17 20:02:43 +00:00
2017-02-01 23:41:05 +00:00
if ( gen_files . size ( ) ) {
f - > store_line ( " [gen] " ) ;
Array genf ;
2017-03-05 15:44:50 +00:00
for ( List < String > : : Element * E = gen_files . front ( ) ; E ; E = E - > next ( ) ) {
2017-02-01 23:41:05 +00:00
genf . push_back ( E - > get ( ) ) ;
}
String value ;
2017-03-05 15:44:50 +00:00
VariantWriter : : write_to_string ( genf , value ) ;
f - > store_line ( " files= " + value ) ;
2017-02-01 23:41:05 +00:00
f - > store_line ( " " ) ;
}
2017-02-01 12:45:45 +00:00
f - > store_line ( " [params] " ) ;
f - > store_line ( " " ) ;
2017-07-19 20:00:46 +00:00
//store options in provided order, to avoid file changing. Order is also important because first match is accepted first.
2017-02-06 03:38:39 +00:00
2017-03-05 15:44:50 +00:00
for ( List < ResourceImporter : : ImportOption > : : Element * E = opts . front ( ) ; E ; E = E - > next ( ) ) {
2017-02-01 12:45:45 +00:00
String base = E - > get ( ) . option . name ;
String value ;
2017-03-05 15:44:50 +00:00
VariantWriter : : write_to_string ( params [ base ] , value ) ;
f - > store_line ( base + " = " + value ) ;
2017-02-01 12:45:45 +00:00
}
2017-02-04 14:12:03 +00:00
f - > close ( ) ;
2017-02-01 12:45:45 +00:00
memdelete ( f ) ;
//update modified times, to avoid reimport
fs - > files [ cpos ] - > modified_time = FileAccess : : get_modified_time ( p_file ) ;
2017-03-05 15:44:50 +00:00
fs - > files [ cpos ] - > import_modified_time = FileAccess : : get_modified_time ( p_file + " .import " ) ;
2017-08-17 20:02:43 +00:00
fs - > files [ cpos ] - > deps = _get_dependencies ( p_file ) ;
fs - > files [ cpos ] - > type = importer - > get_resource_type ( ) ;
2017-08-29 22:50:58 +00:00
fs - > files [ cpos ] - > import_valid = ResourceLoader : : is_import_valid ( p_file ) ;
2017-02-06 03:38:39 +00:00
//if file is currently up, maybe the source it was loaded from changed, so import math must be updated for it
//to reload properly
if ( ResourceCache : : has ( p_file ) ) {
Resource * r = ResourceCache : : get ( p_file ) ;
2017-03-05 15:44:50 +00:00
if ( r - > get_import_path ( ) ! = String ( ) ) {
2017-02-06 03:38:39 +00:00
String dst_path = ResourceFormatImporter : : get_singleton ( ) - > get_internal_resource_path ( p_file ) ;
r - > set_import_path ( dst_path ) ;
r - > set_import_last_modified_time ( 0 ) ;
}
}
2017-02-01 12:45:45 +00:00
}
2017-03-05 15:44:50 +00:00
void EditorFileSystem : : reimport_files ( const Vector < String > & p_files ) {
2017-02-01 12:45:45 +00:00
2017-03-05 15:44:50 +00:00
importing = true ;
EditorProgress pr ( " reimport " , TTR ( " (Re) Importing Assets " ), p_files.size()) ;
2017-09-20 23:59:19 +00:00
Vector < ImportFile > files ;
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_files . size ( ) ; i + + ) {
2017-09-20 23:59:19 +00:00
ImportFile ifile ;
ifile . path = p_files [ i ] ;
ifile . order = ResourceFormatImporter : : get_singleton ( ) - > get_import_order ( p_files [ i ] ) ;
files . push_back ( ifile ) ;
}
files . sort ( ) ;
for ( int i = 0 ; i < files . size ( ) ; i + + ) {
pr . step ( files [ i ] . path . get_file ( ) , i ) ;
2017-02-01 12:45:45 +00:00
2017-09-20 23:59:19 +00:00
_reimport_file ( files [ i ] . path ) ;
2017-02-01 12:45:45 +00:00
}
_save_filesystem_cache ( ) ;
2017-03-05 15:44:50 +00:00
importing = false ;
2017-02-06 03:38:39 +00:00
if ( ! is_scanning ( ) ) {
emit_signal ( " filesystem_changed " ) ;
}
2017-08-31 21:57:03 +00:00
emit_signal ( " resources_reimported " , p_files ) ;
2017-02-01 12:45:45 +00:00
}
2014-02-10 01:10:30 +00:00
void EditorFileSystem : : _bind_methods ( ) {
2017-08-09 11:19:41 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_filesystem " ) , & EditorFileSystem : : get_filesystem ) ;
2017-03-05 15:44:50 +00:00
ClassDB : : bind_method ( D_METHOD ( " is_scanning " ) , & EditorFileSystem : : is_scanning ) ;
ClassDB : : bind_method ( D_METHOD ( " get_scanning_progress " ) , & EditorFileSystem : : get_scanning_progress ) ;
ClassDB : : bind_method ( D_METHOD ( " scan " ) , & EditorFileSystem : : scan ) ;
ClassDB : : bind_method ( D_METHOD ( " scan_sources " ) , & EditorFileSystem : : scan_changes ) ;
ClassDB : : bind_method ( D_METHOD ( " update_file " , " path " ) , & EditorFileSystem : : update_file ) ;
2017-08-09 11:19:41 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_filesystem_path " , " path " ) , & EditorFileSystem : : get_filesystem_path ) ;
2017-03-05 15:44:50 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_file_type " , " path " ) , & EditorFileSystem : : get_file_type ) ;
ADD_SIGNAL ( MethodInfo ( " filesystem_changed " ) ) ;
ADD_SIGNAL ( MethodInfo ( " sources_changed " , PropertyInfo ( Variant : : BOOL , " exist " ) ) ) ;
2017-08-31 21:57:03 +00:00
ADD_SIGNAL ( MethodInfo ( " resources_reimported " , PropertyInfo ( Variant : : POOL_STRING_ARRAY , " resources " ) ) ) ;
2014-02-10 01:10:30 +00:00
}
2017-02-01 12:45:45 +00:00
void EditorFileSystem : : _update_extensions ( ) {
valid_extensions . clear ( ) ;
import_extensions . clear ( ) ;
List < String > extensionsl ;
2017-03-05 15:44:50 +00:00
ResourceLoader : : get_recognized_extensions_for_type ( " " , & extensionsl ) ;
for ( List < String > : : Element * E = extensionsl . front ( ) ; E ; E = E - > next ( ) ) {
2017-02-01 12:45:45 +00:00
valid_extensions . insert ( E - > get ( ) ) ;
}
extensionsl . clear ( ) ;
ResourceFormatImporter : : get_singleton ( ) - > get_recognized_extensions ( & extensionsl ) ;
2017-03-05 15:44:50 +00:00
for ( List < String > : : Element * E = extensionsl . front ( ) ; E ; E = E - > next ( ) ) {
2016-07-03 16:15:15 +00:00
2017-02-01 12:45:45 +00:00
import_extensions . insert ( E - > get ( ) ) ;
}
}
2016-07-03 16:15:15 +00:00
2014-02-10 01:10:30 +00:00
EditorFileSystem : : EditorFileSystem ( ) {
2017-03-05 15:44:50 +00:00
reimport_on_missing_imported_files = GLOBAL_DEF ( " editor/reimport_missing_imported_files " , true ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
singleton = this ;
filesystem = memnew ( EditorFileSystemDirectory ) ; //like, empty
2017-06-16 20:32:46 +00:00
filesystem - > parent = NULL ;
2014-02-10 01:10:30 +00:00
thread = NULL ;
2017-03-05 15:44:50 +00:00
scanning = false ;
importing = false ;
use_threads = true ;
thread_sources = NULL ;
new_filesystem = NULL ;
2014-02-10 01:10:30 +00:00
2017-06-16 20:32:46 +00:00
abort_scan = false ;
2017-03-05 15:44:50 +00:00
scanning_changes = false ;
2017-06-16 20:32:46 +00:00
scanning_changes_done = false ;
2014-02-10 01:10:30 +00:00
ResourceSaver : : set_save_callback ( _resource_saved ) ;
2017-02-01 12:45:45 +00:00
DirAccess * da = DirAccess : : create ( DirAccess : : ACCESS_RESOURCES ) ;
2017-03-05 15:44:50 +00:00
if ( da - > change_dir ( " res://.import " ) ! = OK ) {
2017-02-01 12:45:45 +00:00
da - > make_dir ( " res://.import " ) ;
2016-01-05 13:36:24 +00:00
}
2017-02-01 12:45:45 +00:00
memdelete ( da ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
scan_total = 0 ;
2014-02-10 01:10:30 +00:00
}
EditorFileSystem : : ~ EditorFileSystem ( ) {
}