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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: Contains a list of files, determines their perforce status
//
// $NoKeywords: $
//===========================================================================//
#include <vgui_controls/PerforceFileList.h>
#include <vgui_controls/ListPanel.h>
#include <vgui_controls/Label.h>
#include <vgui_controls/ImageList.h>
#include "tier1/KeyValues.h"
#include <vgui/ISurface.h>
#include "filesystem.h"
#include "p4lib/ip4.h"
#include "tier2/tier2.h"
// memdbgon must be the last include file in a .cpp file!!!
#include <tier0/memdbgon.h>
using namespace vgui;
static int ListFileNameSortFunc(ListPanel *pPanel, const ListPanelItem &item1, const ListPanelItem &item2 )
{
NOTE_UNUSED( pPanel );
bool dir1 = item1.kv->GetInt("directory") == 1;
bool dir2 = item2.kv->GetInt("directory") == 1;
// if they're both not directories of files, return if dir1 is a directory (before files)
if ( dir1 != dir2 )
{
return dir1 ? -1 : 1;
}
const char *string1 = item1.kv->GetString("text");
const char *string2 = item2.kv->GetString("text");
// YWB: Mimic windows behavior where filenames starting with numbers are sorted based on numeric part
int num1 = Q_atoi( string1 );
int num2 = Q_atoi( string2 );
if ( num1 != 0 &&
num2 != 0 )
{
if ( num1 < num2 )
return -1;
else if ( num1 > num2 )
return 1;
}
// Push numbers before everything else
if ( num1 != 0 )
{
return -1;
}
// Push numbers before everything else
if ( num2 != 0 )
{
return 1;
}
return Q_stricmp( string1, string2 );
}
static int ListBaseStringSortFunc(ListPanel *pPanel, const ListPanelItem &item1, const ListPanelItem &item2, char const *fieldName )
{
bool dir1 = item1.kv->GetInt("directory") == 1;
bool dir2 = item2.kv->GetInt("directory") == 1;
// if they're both not directories of files, return if dir1 is a directory (before files)
if (dir1 != dir2)
{
return -1;
}
const char *string1 = item1.kv->GetString(fieldName);
const char *string2 = item2.kv->GetString(fieldName);
int cval = Q_stricmp(string1, string2);
if ( cval == 0 )
{
// Use filename to break ties
return ListFileNameSortFunc( pPanel, item1, item2 );
}
return cval;
}
static int ListBaseIntegerSortFunc(ListPanel *pPanel, const ListPanelItem &item1, const ListPanelItem &item2, char const *fieldName )
{
bool dir1 = item1.kv->GetInt("directory") == 1;
bool dir2 = item2.kv->GetInt("directory") == 1;
// if they're both not directories of files, return if dir1 is a directory (before files)
if (dir1 != dir2)
{
return -1;
}
int i1 = item1.kv->GetInt(fieldName);
int i2 = item2.kv->GetInt(fieldName);
if ( i1 == i2 )
{
// Use filename to break ties
return ListFileNameSortFunc( pPanel, item1, item2 );
}
return ( i1 < i2 ) ? -1 : 1;
}
static int ListFileSizeSortFunc(ListPanel *pPanel, const ListPanelItem &item1, const ListPanelItem &item2 )
{
return ListBaseIntegerSortFunc( pPanel, item1, item2, "filesizeint" );
}
static int ListFileAttributesSortFunc(ListPanel *pPanel, const ListPanelItem &item1, const ListPanelItem &item2 )
{
return ListBaseStringSortFunc( pPanel, item1, item2, "attributes" );
}
static int ListFileTypeSortFunc(ListPanel *pPanel, const ListPanelItem &item1, const ListPanelItem &item2 )
{
return ListBaseStringSortFunc( pPanel, item1, item2, "type" );
}
//-----------------------------------------------------------------------------
// Dictionary of start dir contexts
//-----------------------------------------------------------------------------
struct ColumnInfo_t
{
char const *columnName;
char const *columnText;
int startingWidth;
int minWidth;
int maxWidth;
int flags;
SortFunc *pfnSort;
Label::Alignment alignment;
};
static ColumnInfo_t g_ColInfo[] =
{
{ "text", "#PerforceFileList_Col_Name", 175, 20, 10000, ListPanel::COLUMN_UNHIDABLE, &ListFileNameSortFunc , Label::a_west },
{ "type", "#PerforceFileList_Col_Type", 150, 20, 10000, 0, &ListFileTypeSortFunc , Label::a_west },
{ "in_perforce", "#PerforceFileList_Col_InPerforce", 50, 20, 10000, ListPanel::COLUMN_UNHIDABLE, &ListFileAttributesSortFunc , Label::a_west },
{ "synched", "#PerforceFileList_Col_Synched", 50, 20, 10000, ListPanel::COLUMN_UNHIDABLE, &ListFileAttributesSortFunc , Label::a_west },
{ "checked_out", "#PerforceFileList_Col_Checked_Out", 50, 20, 10000, ListPanel::COLUMN_UNHIDABLE, &ListFileAttributesSortFunc , Label::a_west },
{ "attributes", "#PerforceFileList_Col_Attributes", 50, 20, 10000, ListPanel::COLUMN_HIDDEN, &ListFileAttributesSortFunc , Label::a_west },
};
//-----------------------------------------------------------------------------
// Purpose: Constructor
//-----------------------------------------------------------------------------
PerforceFileList::PerforceFileList( Panel *pParent, const char *pPanelName ) :
BaseClass( pParent, pPanelName )
{
SetMultiselectEnabled( false );
m_bShowDeletedFiles = false;
// list panel
for ( int i = 0; i < ARRAYSIZE( g_ColInfo ); ++i )
{
const ColumnInfo_t& info = g_ColInfo[ i ];
AddColumnHeader( i, info.columnName, info.columnText, info.startingWidth, info.minWidth, info.maxWidth, info.flags );
SetSortFunc( i, info.pfnSort );
SetColumnTextAlignment( i, info.alignment );
}
SetSortColumn( 0 );
}
//-----------------------------------------------------------------------------
// Purpose: Destructor
//-----------------------------------------------------------------------------
PerforceFileList::~PerforceFileList()
{
}
//-----------------------------------------------------------------------------
// Purpose: Apply scheme settings
//-----------------------------------------------------------------------------
void PerforceFileList::ApplySchemeSettings(IScheme *pScheme)
{
BaseClass::ApplySchemeSettings( pScheme );
ImageList *pImageList = new ImageList( false );
pImageList->AddImage( scheme()->GetImage( "resource/icon_file", false ) );
pImageList->AddImage( scheme()->GetImage( "resource/icon_folder", false ) );
pImageList->AddImage( scheme()->GetImage( "resource/icon_folder_selected", false ) );
SetImageList( pImageList, true );
}
//-----------------------------------------------------------------------------
// Toggle showing deleted files or not
//-----------------------------------------------------------------------------
void PerforceFileList::ShowDeletedFiles( bool bShowDeletedFiles )
{
if ( m_bShowDeletedFiles != bShowDeletedFiles )
{
m_bShowDeletedFiles = bShowDeletedFiles;
for ( int i = FirstItem(); i != InvalidItemID(); i = NextItem( i ) )
{
KeyValues *pKeyValues = GetItem( i );
if ( !pKeyValues->GetInt( "deleted", 0 ) )
continue;
SetItemVisible( i, m_bShowDeletedFiles );
}
}
}
//-----------------------------------------------------------------------------
// Add a directory to the directory list, returns client spec
//-----------------------------------------------------------------------------
void PerforceFileList::AddItemToDirectoryList( const char *pFullPath, int nItemID, bool bIsDirectory )
{
char pDirectoryBuf[MAX_PATH];
Q_ExtractFilePath( pFullPath, pDirectoryBuf, sizeof(pDirectoryBuf) );
Q_StripTrailingSlash( pDirectoryBuf );
pFullPath = pDirectoryBuf;
DirectoryInfo_t *pInfo;
UtlSymId_t i = m_Directories.Find( pFullPath );
if ( i != m_Directories.InvalidIndex() )
{
pInfo = &m_Directories[i];
}
else
{
char pClientSpec[MAX_PATH];
if ( !p4->GetClientSpecForDirectory( pFullPath, pClientSpec, sizeof(pClientSpec) ) )
{
pClientSpec[0] = 0;
}
pInfo = &m_Directories[ pFullPath ];
pInfo->m_ClientSpec = pClientSpec;
}
pInfo->m_ItemIDs.AddToTail( nItemID );
}
//-----------------------------------------------------------------------------
// Add a file to the file list.
//-----------------------------------------------------------------------------
int PerforceFileList::AddFileToFileList( const char *pFullPath, bool bExistsOnDisk )
{
bool bIsFileWriteable = bExistsOnDisk ? g_pFullFileSystem->IsFileWritable( pFullPath, NULL ) : true;
// add the file to the list
KeyValues *kv = new KeyValues("item");
const char *pRelativePath = Q_UnqualifiedFileName( pFullPath );
kv->SetString( "text", pRelativePath );
kv->SetString( "fullpath", pFullPath );
kv->SetInt( "image", 1 );
IImage *pImage = surface()->GetIconImageForFullPath( pFullPath );
if ( pImage )
{
kv->SetPtr( "iconImage", (void *)pImage );
}
kv->SetInt( "imageSelected", 1 );
kv->SetInt( "directory", 0 );
// These are computed by Refresh
kv->SetInt( "in_perforce", 0 );
kv->SetInt( "synched", 0 );
kv->SetInt( "checked_out", 0 );
kv->SetInt( "deleted", 0 );
wchar_t pFileType[ 80 ];
g_pFullFileSystem->GetFileTypeForFullPath( pFullPath, pFileType, sizeof( pFileType ) );
kv->SetWString( "type", pFileType );
kv->SetString( "attributes", bIsFileWriteable ? "" : "R" );
int nItemID = AddItem( kv, 0, false, false );
kv->deleteThis();
AddItemToDirectoryList( pFullPath, nItemID, false );
return nItemID;
}
//-----------------------------------------------------------------------------
// Add a directory to the file list.
//-----------------------------------------------------------------------------
int PerforceFileList::AddDirectoryToFileList( const char *pFullPath, bool bExistsOnDisk )
{
KeyValues *kv = new KeyValues("item");
const char *pRelativePath = Q_UnqualifiedFileName( pFullPath );
kv->SetString( "text", pRelativePath );
kv->SetString( "fullpath", pFullPath );
kv->SetPtr( "iconImage", (void *)NULL );
kv->SetInt( "image", 2 );
kv->SetInt( "imageSelected", 3 );
kv->SetInt( "directory", 1 );
// These are computed by Refresh
kv->SetInt( "in_perforce", 0 );
kv->SetInt( "synched", 0 );
kv->SetInt( "checked_out", 0 );
kv->SetInt( "deleted", 0 );
kv->SetString( "type", "#PerforceFileList_FileType_Folder" );
kv->SetString( "attributes", "D" );
int nItemID = AddItem(kv, 0, false, false);
kv->deleteThis();
AddItemToDirectoryList( pFullPath, nItemID, true );
return nItemID;
}
//-----------------------------------------------------------------------------
// Add a file or directory to the file list.
//-----------------------------------------------------------------------------
int PerforceFileList::AddFile( const char *pFullPath, int nFileExists, int nIsDirectory )
{
if ( !pFullPath )
return InvalidItemID();
if ( !Q_IsAbsolutePath( pFullPath ) )
{
Warning( "Absolute paths required for PerforceFileList::AddFile!\n"
"\"%s\" is not an abolute path", pFullPath );
return InvalidItemID();
}
char pFixedPath[MAX_PATH];
Q_strncpy( pFixedPath, pFullPath, sizeof(pFixedPath) );
Q_FixSlashes( pFixedPath );
// Check to see if the file is on disk
int nItemID = -1;
bool bFileExists, bIsDirectory;
if ( nFileExists < 0 )
{
bFileExists = g_pFullFileSystem->FileExists( pFixedPath ) ;
}
else
{
bFileExists = ( nFileExists != 0 );
}
if ( nIsDirectory < 0 )
{
if ( bFileExists )
{
bIsDirectory = g_pFullFileSystem->IsDirectory( pFixedPath );
}
else
{
int nLen = Q_strlen( pFixedPath );
bIsDirectory = ( pFixedPath[nLen-1] == CORRECT_PATH_SEPARATOR );
}
}
else
{
bIsDirectory = ( nIsDirectory != 0 );
}
if ( bIsDirectory )
{
nItemID = AddDirectoryToFileList( pFixedPath, bFileExists );
}
else
{
nItemID = AddFileToFileList( pFixedPath, bFileExists );
}
return nItemID;
}
//-----------------------------------------------------------------------------
// Remove all files from the list
//-----------------------------------------------------------------------------
void PerforceFileList::RemoveAllFiles()
{
RemoveAll();
m_Directories.Clear();
}
//-----------------------------------------------------------------------------
// Finds a file in the p4 list
//-----------------------------------------------------------------------------
static P4File_t *FindFileInPerforceList( const char *pFileName, CUtlVector<P4File_t> &fileList, bool *pFound )
{
int nCount = fileList.Count();
for ( int i = 0; i < nCount; ++i )
{
if ( pFound[i] )
continue;
const char *pPerforceFileName = p4->String( fileList[i].m_sLocalFile );
if ( !Q_stricmp( pPerforceFileName, pFileName ) )
{
pFound[i] = true;
return &fileList[i];
}
}
return NULL;
}
//-----------------------------------------------------------------------------
// Refresh perforce information
//-----------------------------------------------------------------------------
void PerforceFileList::RefreshPerforceState( int nItemID, bool bFileExists, P4File_t *pFileInfo )
{
KeyValues *kv = GetItem( nItemID );
bool bIsSynched = false;
bool bIsFileInPerforce = (pFileInfo != NULL);
if ( bIsFileInPerforce )
{
if ( pFileInfo->m_bDeleted != bFileExists )
{
bIsSynched = ( pFileInfo->m_bDeleted || ( pFileInfo->m_iHeadRevision == pFileInfo->m_iHaveRevision ) );
}
}
else
{
bIsSynched = !bFileExists;
}
bool bIsDeleted = bIsFileInPerforce && !bFileExists && pFileInfo->m_bDeleted;
kv->SetInt( "in_perforce", bIsFileInPerforce );
kv->SetInt( "synched", bIsSynched );
kv->SetInt( "checked_out", bIsFileInPerforce && ( pFileInfo->m_eOpenState != P4FILE_UNOPENED ) );
kv->SetInt( "deleted", bIsDeleted );
if ( bIsDeleted )
{
SetItemVisible( nItemID, m_bShowDeletedFiles );
}
}
//-----------------------------------------------------------------------------
// Refresh perforce information
//-----------------------------------------------------------------------------
void PerforceFileList::Refresh()
{
/*
// Slow method.. does too many perforce operations
for ( int i = FirstItem(); i != InvalidItemID(); i = NextItem( i ) )
{
const char *pFile = GetFile( i );
P4File_t fileInfo;
bool bIsFileInPerforce = p4->GetFileInfo( pFile, &fileInfo );
bool bFileExists = g_pFullFileSystem->FileExists( pFile );
RefreshPerforceState( i, bFileExists, bIsFileInPerforce ? &fileInfo : NULL );
}
*/
// NOTE: Reducing the # of perforce calls is important for performance
int nCount = m_Directories.GetNumStrings();
for ( int i = 0; i < nCount; ++i )
{
const char *pDirectory = m_Directories.String(i);
DirectoryInfo_t *pInfo = &m_Directories[i];
// Retrives files, uses faster method to avoid finding clientspec
CUtlVector<P4File_t> &fileList = p4->GetFileListUsingClientSpec( pDirectory, pInfo->m_ClientSpec );
int nFileCount = fileList.Count();
bool *pFound = (bool*)_alloca( nFileCount * sizeof(bool) );
memset( pFound, 0, nFileCount * sizeof(bool) );
int nItemCount = pInfo->m_ItemIDs.Count();
for ( int j = 0; j < nItemCount; ++j )
{
int nItemID = pInfo->m_ItemIDs[j];
const char *pFileName = GetFile( nItemID );
bool bFileExists = g_pFullFileSystem->FileExists( pFileName );
P4File_t *pFileInfo = FindFileInPerforceList( pFileName, fileList, pFound );
RefreshPerforceState( nItemID, bFileExists, pFileInfo );
}
}
}
//-----------------------------------------------------------------------------
// Is a particular list item a directory?
//-----------------------------------------------------------------------------
bool PerforceFileList::IsDirectoryItem( int nItemID )
{
KeyValues *kv = GetItem( nItemID );
return kv->GetInt( "directory", 0 ) != 0;
}
//-----------------------------------------------------------------------------
// Returns the file associated with a particular item ID
//-----------------------------------------------------------------------------
const char *PerforceFileList::GetFile( int nItemID )
{
KeyValues *kv = GetItem( nItemID );
Assert( kv );
return kv->GetString( "fullpath", "<no file>" );
}
//-----------------------------------------------------------------------------
// Find the item ID associated with a particular file
//-----------------------------------------------------------------------------
int PerforceFileList::FindFile( const char *pFullPath )
{
for ( int i = FirstItem(); i != InvalidItemID(); i = NextItem( i ) )
{
const char *pFile = GetFile( i );
if ( !Q_stricmp( pFile, pFullPath ) )
return i;
}
return InvalidItemID();
}
//-----------------------------------------------------------------------------
// Is a file already in the list?
//-----------------------------------------------------------------------------
bool PerforceFileList::IsFileInList( const char *pFullPath )
{
return ( FindFile( pFullPath ) != InvalidItemID() );
}
//-----------------------------------------------------------------------------
// Purpose: Double-click: expand folders
//-----------------------------------------------------------------------------
void PerforceFileList::OnMouseDoublePressed( MouseCode code )
{
if ( code == MOUSE_LEFT )
{
// select the item
OnMousePressed(code);
// post a special message
if ( GetSelectedItemsCount() > 0 )
{
PostActionSignal( new KeyValues("ItemDoubleClicked" ) );
}
return;
}
BaseClass::OnMouseDoublePressed( code );
}
|