mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2025-02-17 02:22:36 +01:00
Moderation | Change name variables
This commit is contained in:
parent
961540b045
commit
652c25df26
@ -4,9 +4,9 @@ export class CloseIssueDefaultActionMessageComposer implements IMessageComposer<
|
|||||||
{
|
{
|
||||||
private _data: number[];
|
private _data: number[];
|
||||||
|
|
||||||
constructor(k: number, issueIds: number[], _arg_2: number)
|
constructor(issueId: number, issueIds: number[], topicId: number)
|
||||||
{
|
{
|
||||||
this._data = [k, issueIds.length, ...issueIds, _arg_2];
|
this._data = [issueId, issueIds.length, ...issueIds, topicId];
|
||||||
}
|
}
|
||||||
|
|
||||||
public getMessageArray()
|
public getMessageArray()
|
||||||
|
@ -5,12 +5,12 @@ export class DefaultSanctionMessageComposer implements IMessageComposer<Construc
|
|||||||
{
|
{
|
||||||
private _data: ConstructorParameters<typeof DefaultSanctionMessageComposer>;
|
private _data: ConstructorParameters<typeof DefaultSanctionMessageComposer>;
|
||||||
|
|
||||||
constructor(k: number, _arg_2: number, _arg_3: string, _arg_4: number = -1)
|
constructor(userId: number, selectedTopic: number, message: string, issueState: number = -1)
|
||||||
{
|
{
|
||||||
this._data = [k, _arg_2, _arg_3];
|
this._data = [userId, selectedTopic, message];
|
||||||
if(_arg_4 != ModBanMessageComposer.NO_ISSUE_ID)
|
if(issueState != ModBanMessageComposer.NO_ISSUE_ID)
|
||||||
{
|
{
|
||||||
this._data.push(_arg_4);
|
this._data.push(issueState);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,12 +5,12 @@ export class ModAlertMessageComposer implements IMessageComposer<ConstructorPara
|
|||||||
{
|
{
|
||||||
private _data: ConstructorParameters<typeof ModAlertMessageComposer>;
|
private _data: ConstructorParameters<typeof ModAlertMessageComposer>;
|
||||||
|
|
||||||
constructor(k: number, arg2: string, arg3: number, arg4: number = -1)
|
constructor(userId: number, message: string, categoryId: number, issueState: number = -1)
|
||||||
{
|
{
|
||||||
this._data = [k, arg2, arg3];
|
this._data = [userId, message, categoryId];
|
||||||
if(arg4 != ModBanMessageComposer.NO_ISSUE_ID)
|
if(issueState != ModBanMessageComposer.NO_ISSUE_ID)
|
||||||
{
|
{
|
||||||
this._data.push(arg4);
|
this._data.push(issueState);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,12 +6,12 @@ export class ModBanMessageComposer implements IMessageComposer<ConstructorParame
|
|||||||
|
|
||||||
private _data: ConstructorParameters<typeof ModBanMessageComposer>;
|
private _data: ConstructorParameters<typeof ModBanMessageComposer>;
|
||||||
|
|
||||||
constructor(k: number, arg2: string, arg3: number, arg4: number, arg5: boolean, arg6: number = -1)
|
constructor(userId: number, message: string, categoryId: number, selectedAction: number, isBan100Years: boolean, issueState: number = -1)
|
||||||
{
|
{
|
||||||
this._data = [k, arg2, arg3, arg4, arg5];
|
this._data = [userId, message, categoryId, selectedAction, isBan100Years];
|
||||||
if(arg6 != ModBanMessageComposer.NO_ISSUE_ID)
|
if(issueState != ModBanMessageComposer.NO_ISSUE_ID)
|
||||||
{
|
{
|
||||||
this._data.push(arg6);
|
this._data.push(issueState);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,13 +5,13 @@ export class ModKickMessageComposer implements IMessageComposer<ConstructorParam
|
|||||||
{
|
{
|
||||||
private _data: ConstructorParameters<typeof ModKickMessageComposer>;
|
private _data: ConstructorParameters<typeof ModKickMessageComposer>;
|
||||||
|
|
||||||
constructor(k: number, arg2: string, arg3: number, arg4: number = -1)
|
constructor(userId: number, message: string, categoryId: number, issueState: number = -1)
|
||||||
{
|
{
|
||||||
this._data = [k, arg2, arg3];
|
this._data = [userId, message, categoryId];
|
||||||
|
|
||||||
if(arg4 != ModBanMessageComposer.NO_ISSUE_ID)
|
if(issueState != ModBanMessageComposer.NO_ISSUE_ID)
|
||||||
{
|
{
|
||||||
this._data.push(arg4);
|
this._data.push(issueState);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,16 +5,16 @@ export class ModMessageMessageComposer implements IMessageComposer<any>
|
|||||||
{
|
{
|
||||||
private _data: any[] = [];
|
private _data: any[] = [];
|
||||||
|
|
||||||
constructor(k: number, arg2: string, arg3: number, arg4: number = -1)
|
constructor(userId: number, message: string, categoryId: number, issueState: number = -1)
|
||||||
{
|
{
|
||||||
this._data.push(k);
|
this._data.push(userId);
|
||||||
this._data.push(arg2);
|
this._data.push(message);
|
||||||
this._data.push('');
|
this._data.push('');
|
||||||
this._data.push('');
|
this._data.push('');
|
||||||
this._data.push(arg3);
|
this._data.push(categoryId);
|
||||||
if(arg4 != ModBanMessageComposer.NO_ISSUE_ID)
|
if(issueState != ModBanMessageComposer.NO_ISSUE_ID)
|
||||||
{
|
{
|
||||||
this._data.push(arg4);
|
this._data.push(issueState);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,12 +5,12 @@ export class ModMuteMessageComposer implements IMessageComposer<ConstructorParam
|
|||||||
{
|
{
|
||||||
private _data: ConstructorParameters<typeof ModMuteMessageComposer>;
|
private _data: ConstructorParameters<typeof ModMuteMessageComposer>;
|
||||||
|
|
||||||
constructor(k: number, arg2: string, arg3: number, arg4: number = -1)
|
constructor(userId: number, message: string, categoryId: number, issueState: number = -1)
|
||||||
{
|
{
|
||||||
this._data = [k, arg2, arg3];
|
this._data = [userId, message, categoryId];
|
||||||
if(arg4 != ModBanMessageComposer.NO_ISSUE_ID)
|
if(issueState != ModBanMessageComposer.NO_ISSUE_ID)
|
||||||
{
|
{
|
||||||
this._data.push(arg4);
|
this._data.push(issueState);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,9 +4,9 @@ export class ModToolPreferencesComposer implements IMessageComposer<ConstructorP
|
|||||||
{
|
{
|
||||||
private _data: ConstructorParameters<typeof ModToolPreferencesComposer>;
|
private _data: ConstructorParameters<typeof ModToolPreferencesComposer>;
|
||||||
|
|
||||||
constructor(k: number, _arg_2: number, _arg_3: number, _arg_4: number)
|
constructor(lastWindowX: number, lastWindowY: number, lastWindowWidth: number, lastWindowHeight: number)
|
||||||
{
|
{
|
||||||
this._data = [k, _arg_2, _arg_3, _arg_4];
|
this._data = [lastWindowX, lastWindowY, lastWindowWidth, lastWindowHeight];
|
||||||
}
|
}
|
||||||
|
|
||||||
public getMessageArray()
|
public getMessageArray()
|
||||||
|
@ -4,9 +4,9 @@ export class ModToolSanctionComposer implements IMessageComposer<ConstructorPara
|
|||||||
{
|
{
|
||||||
private _data: ConstructorParameters<typeof ModToolSanctionComposer>;
|
private _data: ConstructorParameters<typeof ModToolSanctionComposer>;
|
||||||
|
|
||||||
constructor(k: number, _arg_2: number, _arg_3: number)
|
constructor(issueId: number, userId: number, sanctionId: number)
|
||||||
{
|
{
|
||||||
this._data = [k, _arg_2, _arg_3];
|
this._data = [issueId, userId, sanctionId];
|
||||||
}
|
}
|
||||||
|
|
||||||
public getMessageArray()
|
public getMessageArray()
|
||||||
|
@ -5,13 +5,13 @@ export class ModTradingLockMessageComposer implements IMessageComposer<Construct
|
|||||||
{
|
{
|
||||||
private _data: ConstructorParameters<typeof ModTradingLockMessageComposer>;
|
private _data: ConstructorParameters<typeof ModTradingLockMessageComposer>;
|
||||||
|
|
||||||
constructor(k: number, arg2: string, arg3: number, arg4: number, arg5: number = -1)
|
constructor(userId: number, message: string, numSeconds: number, categoryId: number, issueState: number = -1)
|
||||||
{
|
{
|
||||||
this._data = [k, arg2, arg3, arg4];
|
this._data = [userId, message, numSeconds, categoryId];
|
||||||
|
|
||||||
if(arg5 != ModBanMessageComposer.NO_ISSUE_ID)
|
if(issueState != ModBanMessageComposer.NO_ISSUE_ID)
|
||||||
{
|
{
|
||||||
this._data.push(arg5);
|
this._data.push(issueState);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,11 +9,11 @@ export class ModeratorActionMessageComposer implements IMessageComposer<any>
|
|||||||
|
|
||||||
private _data: any[] = [];
|
private _data: any[] = [];
|
||||||
|
|
||||||
constructor(k: number, arg2: string, arg3: string)
|
constructor(actionState: number, message: string, value: string)
|
||||||
{
|
{
|
||||||
this._data.push(k);
|
this._data.push(actionState);
|
||||||
this._data.push(arg2);
|
this._data.push(message);
|
||||||
this._data.push(arg3);
|
this._data.push(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
public getMessageArray()
|
public getMessageArray()
|
||||||
|
@ -9,13 +9,13 @@ export class CfhChatlogData
|
|||||||
private _chatRecordId: number;
|
private _chatRecordId: number;
|
||||||
private _chatRecord: ChatRecordData;
|
private _chatRecord: ChatRecordData;
|
||||||
|
|
||||||
constructor(k: IMessageDataWrapper)
|
constructor(wrapper: IMessageDataWrapper)
|
||||||
{
|
{
|
||||||
this._issueId = k.readInt();
|
this._issueId = wrapper.readInt();
|
||||||
this._callerUserId = k.readInt();
|
this._callerUserId = wrapper.readInt();
|
||||||
this._reportedUserId = k.readInt();
|
this._reportedUserId = wrapper.readInt();
|
||||||
this._chatRecordId = k.readInt();
|
this._chatRecordId = wrapper.readInt();
|
||||||
this._chatRecord = new ChatRecordData(k);
|
this._chatRecord = new ChatRecordData(wrapper);
|
||||||
}
|
}
|
||||||
|
|
||||||
public get issueId(): number
|
public get issueId(): number
|
||||||
|
@ -9,9 +9,9 @@ export class IssueDeletedMessageParser implements IMessageParser
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public parse(k: IMessageDataWrapper): boolean
|
public parse(wrapper: IMessageDataWrapper): boolean
|
||||||
{
|
{
|
||||||
this._issueId = parseInt(k.readString());
|
this._issueId = parseInt(wrapper.readString());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,30 +18,30 @@ export class IssueInfoMessageParser implements IMessageParser
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public parse(k: IMessageDataWrapper): boolean
|
public parse(wrapper: IMessageDataWrapper): boolean
|
||||||
{
|
{
|
||||||
const issueId: number = k.readInt();
|
const issueId: number = wrapper.readInt();
|
||||||
const state: number = k.readInt();
|
const state: number = wrapper.readInt();
|
||||||
const categoryId: number = k.readInt();
|
const categoryId: number = wrapper.readInt();
|
||||||
const reportedCategoryId: number = k.readInt();
|
const reportedCategoryId: number = wrapper.readInt();
|
||||||
const issueAgeInMs: number = k.readInt();
|
const issueAgeInMs: number = wrapper.readInt();
|
||||||
const priority: number = k.readInt();
|
const priority: number = wrapper.readInt();
|
||||||
const groupingId: number = k.readInt();
|
const groupingId: number = wrapper.readInt();
|
||||||
const reporterUserId: number = k.readInt();
|
const reporterUserId: number = wrapper.readInt();
|
||||||
const reporterUsername: string = k.readString();
|
const reporterUsername: string = wrapper.readString();
|
||||||
const reportedUserId: number = k.readInt();
|
const reportedUserId: number = wrapper.readInt();
|
||||||
const reportedUsername: string = k.readString();
|
const reportedUsername: string = wrapper.readString();
|
||||||
const pickerUserId: number = k.readInt();
|
const pickerUserId: number = wrapper.readInt();
|
||||||
const pickerUsername: string = k.readString();
|
const pickerUsername: string = wrapper.readString();
|
||||||
const message: string = k.readString();
|
const message: string = wrapper.readString();
|
||||||
const chatRecordId: number = k.readInt();
|
const chatRecordId: number = wrapper.readInt();
|
||||||
|
|
||||||
const patternsCount: number = k.readInt();
|
const patternsCount: number = wrapper.readInt();
|
||||||
const patterns: PatternMatchData[] = [];
|
const patterns: PatternMatchData[] = [];
|
||||||
|
|
||||||
for(let i = 0; i < patternsCount; i++)
|
for(let i = 0; i < patternsCount; i++)
|
||||||
{
|
{
|
||||||
patterns.push(new PatternMatchData(k));
|
patterns.push(new PatternMatchData(wrapper));
|
||||||
}
|
}
|
||||||
|
|
||||||
this._issueData = new IssueMessageData(issueId, state, categoryId, reportedCategoryId, issueAgeInMs,
|
this._issueData = new IssueMessageData(issueId, state, categoryId, reportedCategoryId, issueAgeInMs,
|
||||||
|
@ -13,23 +13,23 @@ export class IssuePickFailedMessageParser implements IMessageParser
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public parse(k: IMessageDataWrapper): boolean
|
public parse(wrapper: IMessageDataWrapper): boolean
|
||||||
{
|
{
|
||||||
this._issues = [];
|
this._issues = [];
|
||||||
|
|
||||||
const count = k.readInt();
|
const count = wrapper.readInt();
|
||||||
|
|
||||||
for(let i = 0; i < count; i++)
|
for(let i = 0; i < count; i++)
|
||||||
{
|
{
|
||||||
const _local_4 = k.readInt();
|
const issueId = wrapper.readInt();
|
||||||
const _local_5 = k.readInt();
|
const userId = wrapper.readInt();
|
||||||
const _local_6 = k.readString();
|
const userName = wrapper.readString();
|
||||||
const _local_7 = new IssueMessageData(_local_4, 0, 0, 0, 0, 0, 0, 0, null, 0, null, _local_5, _local_6, null, 0, []);
|
const _local_7 = new IssueMessageData(issueId, 0, 0, 0, 0, 0, 0, 0, null, 0, null, userId, userName, null, 0, []);
|
||||||
this._issues.push(_local_7);
|
this._issues.push(_local_7);
|
||||||
}
|
}
|
||||||
|
|
||||||
this._retryEnabled = k.readBoolean();
|
this._retryEnabled = wrapper.readBoolean();
|
||||||
this._retryCount = k.readInt();
|
this._retryCount = wrapper.readInt();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,22 +8,22 @@ export class ModRoomData implements IDisposable
|
|||||||
private _tags: string[];
|
private _tags: string[];
|
||||||
private _disposed: boolean;
|
private _disposed: boolean;
|
||||||
|
|
||||||
constructor(k: IMessageDataWrapper)
|
constructor(wrapper: IMessageDataWrapper)
|
||||||
{
|
{
|
||||||
this._tags = [];
|
this._tags = [];
|
||||||
this._exists = k.readBoolean();
|
this._exists = wrapper.readBoolean();
|
||||||
if(!this.exists)
|
if(!this.exists)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this._name = k.readString();
|
this._name = wrapper.readString();
|
||||||
this._desc = k.readString();
|
this._desc = wrapper.readString();
|
||||||
|
|
||||||
const tagCount = k.readInt();
|
const tagCount = wrapper.readInt();
|
||||||
|
|
||||||
for(let i = 0; i < tagCount; i++)
|
for(let i = 0; i < tagCount; i++)
|
||||||
{
|
{
|
||||||
this._tags.push(k.readString());
|
this._tags.push(wrapper.readString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,12 +16,12 @@ export class ModeratorToolPreferencesMessageParser implements IMessageParser
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public parse(k: IMessageDataWrapper): boolean
|
public parse(wrapper: IMessageDataWrapper): boolean
|
||||||
{
|
{
|
||||||
this._windowX = k.readInt();
|
this._windowX = wrapper.readInt();
|
||||||
this._windowY = k.readInt();
|
this._windowY = wrapper.readInt();
|
||||||
this._windowWidth = k.readInt();
|
this._windowWidth = wrapper.readInt();
|
||||||
this._windowHeight = k.readInt();
|
this._windowHeight = wrapper.readInt();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,11 +7,11 @@ export class PatternMatchData implements IDisposable
|
|||||||
private _endIndex: number;
|
private _endIndex: number;
|
||||||
private _disposed: boolean = false;
|
private _disposed: boolean = false;
|
||||||
|
|
||||||
constructor(k: IMessageDataWrapper)
|
constructor(wrapper: IMessageDataWrapper)
|
||||||
{
|
{
|
||||||
this._pattern = k.readString();
|
this._pattern = wrapper.readString();
|
||||||
this._startIndex = k.readInt();
|
this._startIndex = wrapper.readInt();
|
||||||
this._endIndex = k.readInt();
|
this._endIndex = wrapper.readInt();
|
||||||
}
|
}
|
||||||
|
|
||||||
public dispose(): void
|
public dispose(): void
|
||||||
|
@ -11,14 +11,14 @@ export class RoomModerationData implements IDisposable
|
|||||||
private _room: ModRoomData;
|
private _room: ModRoomData;
|
||||||
private _disposed: boolean;
|
private _disposed: boolean;
|
||||||
|
|
||||||
constructor(k: IMessageDataWrapper)
|
constructor(wrapper: IMessageDataWrapper)
|
||||||
{
|
{
|
||||||
this._flatId = k.readInt();
|
this._flatId = wrapper.readInt();
|
||||||
this._userCount = k.readInt();
|
this._userCount = wrapper.readInt();
|
||||||
this._ownerInRoom = k.readBoolean();
|
this._ownerInRoom = wrapper.readBoolean();
|
||||||
this._ownerId = k.readInt();
|
this._ownerId = wrapper.readInt();
|
||||||
this._ownerName = k.readString();
|
this._ownerName = wrapper.readString();
|
||||||
this._room = new ModRoomData(k);
|
this._room = new ModRoomData(wrapper);
|
||||||
}
|
}
|
||||||
|
|
||||||
public get flatId(): number
|
public get flatId(): number
|
||||||
|
@ -7,12 +7,12 @@ export class RoomVisitData
|
|||||||
private _enterHour: number;
|
private _enterHour: number;
|
||||||
private _enterMinute: number;
|
private _enterMinute: number;
|
||||||
|
|
||||||
constructor(k: IMessageDataWrapper)
|
constructor(wrapper: IMessageDataWrapper)
|
||||||
{
|
{
|
||||||
this._roomId = k.readInt();
|
this._roomId = wrapper.readInt();
|
||||||
this._roomName = k.readString();
|
this._roomName = wrapper.readString();
|
||||||
this._enterHour = k.readInt();
|
this._enterHour = wrapper.readInt();
|
||||||
this._enterMinute = k.readInt();
|
this._enterMinute = wrapper.readInt();
|
||||||
}
|
}
|
||||||
|
|
||||||
public get roomId(): number
|
public get roomId(): number
|
||||||
|
@ -7,16 +7,16 @@ export class RoomVisitsData
|
|||||||
private _userName: string;
|
private _userName: string;
|
||||||
private _rooms: RoomVisitData[];
|
private _rooms: RoomVisitData[];
|
||||||
|
|
||||||
constructor(k: IMessageDataWrapper)
|
constructor(wrapper: IMessageDataWrapper)
|
||||||
{
|
{
|
||||||
this._rooms = [];
|
this._rooms = [];
|
||||||
this._userId = k.readInt();
|
this._userId = wrapper.readInt();
|
||||||
this._userName = k.readString();
|
this._userName = wrapper.readString();
|
||||||
const _local_2 = k.readInt();
|
const _local_2 = wrapper.readInt();
|
||||||
let _local_3 = 0;
|
let _local_3 = 0;
|
||||||
while(_local_3 < _local_2)
|
while(_local_3 < _local_2)
|
||||||
{
|
{
|
||||||
this._rooms.push(new RoomVisitData(k));
|
this._rooms.push(new RoomVisitData(wrapper));
|
||||||
_local_3++;
|
_local_3++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user