Skip to content

Commit 7c9a8c9

Browse files
FileCryptor, Delete commands
Fix issues with DecryptFile and EncryptFile definitions conflicting with Windows defs Refactor Command system, command lookup system Change RyRyCryptor directory from GameFiles/CarDodge to match FileCryptor command
1 parent 33fa4e8 commit 7c9a8c9

15 files changed

+6969
-6495
lines changed

CommandFiles/CommandFileAssets.cpp

Lines changed: 1199 additions & 0 deletions
Large diffs are not rendered by default.

CommandFiles/CommandHelpMessages.cpp

Lines changed: 1081 additions & 1035 deletions
Large diffs are not rendered by default.

CommandFiles/CommandsFile.cpp

Lines changed: 48 additions & 5451 deletions
Large diffs are not rendered by default.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#pragma once
2+
#include <string>
3+
4+
//
5+
// Commands.h - Responsible for housing the commands namespace class interface.
6+
//
7+
8+
// commands - contains all command functions, put into a namespace for code reliability and neatness.
9+
namespace commands {
10+
bool Commands1To10(const std::string sCommand, char* cCommandArgs, const std::string sCommandArgsBuffer = "");
11+
bool Commands11To20(const std::string sCommand, char* cCommandArgs, const std::string sCommandArgsBuffer = "");
12+
bool Commands21To30(const std::string sCommand, char* cCommandArgs, const std::string sCommandArgsBuffer = "");
13+
bool Commands31To40(const std::string sCommand, char* cCommandArgs, const std::string sCommandArgsBuffer = "");
14+
bool Commands41To50(const std::string sCommand, char* cCommandArgs, const std::string sCommandArgsBuffer = "");
15+
bool Commands51To60(const std::string sCommand, char* cCommandArgs, const std::string sCommandArgsBuffer = "");
16+
}

0 commit comments

Comments
 (0)