initial files
This commit is contained in:
194
kp_liberation.brf_sumava/ui/liberation_notifications.hpp
Normal file
194
kp_liberation.brf_sumava/ui/liberation_notifications.hpp
Normal file
@@ -0,0 +1,194 @@
|
||||
class CfgNotifications {
|
||||
class lib_default_notification {
|
||||
duration = 10;
|
||||
soundClose = "defaultNotificationClose";
|
||||
colorIconPicture[] = { 1, 1, 1, 1 };
|
||||
colorIconText[] = { 1, 1, 1, 1 };
|
||||
priority = 5;
|
||||
};
|
||||
class lib_sector_captured: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_SECTORCAPTURED_TITLE;
|
||||
description = $STR_NOTIFICATION_SECTORCAPTURED_TEXT;
|
||||
iconPicture = "res\notif\ui_notif_sec_cap.paa";
|
||||
color[] = { 0, 1, 0, 1 };
|
||||
sound = "taskSucceeded";
|
||||
};
|
||||
class lib_sector_attacked: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_SECTORATTACKED_TITLE;
|
||||
description = $STR_NOTIFICATION_SECTORATTACKED_TEXT;
|
||||
iconPicture = "res\notif\ui_notif_sec_una.paa";
|
||||
color[] = { 1, 1, 0, 1 };
|
||||
sound = "taskCanceled";
|
||||
};
|
||||
class lib_sector_lost: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_SECTORLOST_TITLE;
|
||||
description = $STR_NOTIFICATION_SECTORLOST_TEXT;
|
||||
iconPicture = "res\notif\ui_notif_sec_los.paa";
|
||||
color[] = { 1, 0, 0, 1 };
|
||||
sound = "taskFailed";
|
||||
};
|
||||
class lib_sector_safe: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_SECTORSAFE_TITLE;
|
||||
description = $STR_NOTIFICATION_SECTORSAFE_TEXT;
|
||||
iconPicture = "res\notif\ui_notif_sec_saf.paa";
|
||||
color[] = { 0, 0.35, 1, 1 };
|
||||
sound = "taskUpdated";
|
||||
priority = 3;
|
||||
};
|
||||
class lib_fob_built: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_FOBBUILT_TITLE;
|
||||
description = $STR_NOTIFICATION_FOBBUILT_TEXT;
|
||||
iconPicture = "res\notif\ui_notif_fob_new.paa";
|
||||
color[] = { 0, 0.35, 1, 1 };
|
||||
sound = "taskUpdated";
|
||||
};
|
||||
class lib_fob_safe: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_FOBSAFE_TITLE;
|
||||
description = $STR_NOTIFICATION_FOBSAFE_TEXT;
|
||||
iconPicture = "res\notif\ui_notif_fob_sec.paa";
|
||||
color[] = { 0, 0.35, 1, 1 };
|
||||
sound = "taskUpdated";
|
||||
priority = 3;
|
||||
};
|
||||
class lib_fob_attacked: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_FOBATTACKED_TITLE;
|
||||
description = $STR_NOTIFICATION_FOBATTACKED_TEXT;
|
||||
iconPicture = "res\notif\ui_notif_fob_und.paa";
|
||||
color[] = { 1, 1, 0, 1 };
|
||||
sound = "taskCanceled";
|
||||
};
|
||||
class lib_fob_lost: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_FOBLOST_TITLE;
|
||||
description = $STR_NOTIFICATION_FOBLOST_TEXT;
|
||||
iconPicture = "res\notif\ui_notif_fob_los.paa";
|
||||
color[] = { 1, 0, 0, 1 };
|
||||
sound = "taskFailed";
|
||||
};
|
||||
class lib_battlegroup: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_BATTLEGROUP_TITLE;
|
||||
description = $STR_NOTIFICATION_BATTLEGROUP_TEXT;
|
||||
iconPicture = "res\notif\ui_notif_bgp.paa";
|
||||
color[] = { 1, 0, 0, 1 };
|
||||
sound = "taskFailed";
|
||||
};
|
||||
class lib_incoming: lib_battlegroup {
|
||||
description = $STR_NOTIFICATION_INCOMING_TEXT;
|
||||
};
|
||||
class lib_intel: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_INTEL_TITLE;
|
||||
iconPicture = "res\notif\ui_notif_int.paa";
|
||||
color[] = { 0, 0.35, 1, 1 };
|
||||
sound = "taskUpdated";
|
||||
};
|
||||
class lib_intel_prisoner: lib_intel {
|
||||
description = $STR_NOTIFICATION_PRISONER_TEXT;
|
||||
};
|
||||
class lib_intel_document: lib_intel {
|
||||
description = $STR_NOTIFICATION_DOCUMENT_TEXT;
|
||||
};
|
||||
class lib_intel_fob: lib_intel {
|
||||
description = $STR_NOTIFICATION_FOB_TEXT;
|
||||
};
|
||||
class lib_intel_convoy: lib_intel {
|
||||
description = $STR_NOTIFICATION_CONVOY_SPOTTED_TEXT;
|
||||
};
|
||||
class lib_secondary_fob_destroyed: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_SECONDARY_TITLE;
|
||||
description = $STR_NOTIFICATION_SECONDARY_TEXT;
|
||||
iconPicture = "res\notif\ui_notif_sob.paa";
|
||||
color[] = { 0, 1, 0, 1 };
|
||||
sound = "taskSucceeded";
|
||||
};
|
||||
class lib_secondary_convoy_destroyed: lib_secondary_fob_destroyed {
|
||||
description = $STR_NOTIFICATION_CONVOY_DESTROYED_TEXT;
|
||||
};
|
||||
class lib_reinforcements: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_REINFORCEMENTS_TITLE;
|
||||
description = $STR_NOTIFICATION_REINFORCEMENTS_TEXT;
|
||||
iconPicture = "res\notif\ui_notif_ref.paa";
|
||||
color[] = { 1, 1, 0, 1 };
|
||||
sound = "taskCanceled";
|
||||
};
|
||||
class lib_intel_sar: lib_intel {
|
||||
description = $STR_NOTIFICATION_SAR_STARTED;
|
||||
};
|
||||
class lib_intel_sar_failed: lib_secondary_fob_destroyed {
|
||||
description = $STR_NOTIFICATION_SAR_FAILED;
|
||||
color[] = { 1, 0, 0, 1 };
|
||||
sound = "taskFailed";
|
||||
};
|
||||
class lib_intel_sar_succeeded: lib_secondary_fob_destroyed {
|
||||
description = $STR_NOTIFICATION_SAR_SUCCESS;
|
||||
};
|
||||
class lib_restart_60_s: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_RESTART_TITLE;
|
||||
description = $STR_NOTIFICATION_RESTART_SECOND;
|
||||
iconPicture = "res\notif\ui_notif_restart.paa";
|
||||
color[] = { 1, 1, 0, 1 };
|
||||
sound = "taskCanceled";
|
||||
};
|
||||
class lib_restart_5_min: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_RESTART_TITLE;
|
||||
description = $STR_NOTIFICATION_RESTART_FIVE;
|
||||
iconPicture = "res\notif\ui_notif_restart.paa";
|
||||
color[] = { 1, 1, 0, 1 };
|
||||
sound = "taskCanceled";
|
||||
};
|
||||
class lib_restart_15_min: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_RESTART_TITLE;
|
||||
description = $STR_NOTIFICATION_RESTART_FIFTEEN;
|
||||
iconPicture = "res\notif\ui_notif_restart.paa";
|
||||
color[] = { 1, 1, 0, 1 };
|
||||
sound = "taskCanceled";
|
||||
};
|
||||
class lib_restart_30_min: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_RESTART_TITLE;
|
||||
description = $STR_NOTIFICATION_RESTART_THIRTY;
|
||||
iconPicture = "res\notif\ui_notif_restart.paa";
|
||||
color[] = { 1, 1, 0, 1 };
|
||||
sound = "taskCanceled";
|
||||
};
|
||||
class lib_civ_informant_start: lib_intel {
|
||||
description = $STR_NOTIFICATION_CIV_INFORMANT_START;
|
||||
};
|
||||
class lib_civ_informant_success: lib_intel {
|
||||
description = $STR_NOTIFICATION_CIV_INFORMANT_SUCCESS;
|
||||
};
|
||||
class lib_civ_informant_fail: lib_intel {
|
||||
description = $STR_NOTIFICATION_CIV_INFORMANT_FAIL;
|
||||
};
|
||||
class lib_civ_informant_death: lib_intel {
|
||||
description = $STR_NOTIFICATION_CIV_INFORMANT_DEATH;
|
||||
};
|
||||
class lib_civ_hvt_start: lib_intel {
|
||||
description = $STR_NOTIFICATION_CIV_HVT_START;
|
||||
};
|
||||
class lib_civ_hvt_success: lib_intel {
|
||||
description = $STR_NOTIFICATION_CIV_HVT_SUCCESS;
|
||||
};
|
||||
class lib_civ_hvt_fail: lib_intel {
|
||||
description = $STR_NOTIFICATION_CIV_HVT_FAIL;
|
||||
};
|
||||
class lib_asymm_convoy_ambush: lib_default_notification {
|
||||
title = $STR_NOTIFICATION_ASYMMCONVOYAMBUSH_TITLE;
|
||||
description = $STR_NOTIFICATION_ASYMMCONVOYAMBUSH_TEXT;
|
||||
iconPicture = "res\notif\ui_notif_camb.paa";
|
||||
color[] = {1, 0, 0, 1};
|
||||
sound = "taskCreated";
|
||||
};
|
||||
class lib_asymm_convoy_ambush_success: lib_asymm_convoy_ambush {
|
||||
description = $STR_NOTIFICATION_ASYMMCONVOYAMBUSH_SUCCESS;
|
||||
sound = "taskSucceeded";
|
||||
};
|
||||
class lib_asymm_convoy_ambush_fail: lib_asymm_convoy_ambush {
|
||||
description = $STR_NOTIFICATION_ASYMMCONVOYAMBUSH_FAIL;
|
||||
color[] = {1, 0, 0, 1};
|
||||
sound = "taskFailed";
|
||||
};
|
||||
class lib_asymm_guerilla_incoming: lib_reinforcements {
|
||||
title = $STR_NOTIFICATION_GUER_INC_TITLE;
|
||||
description = $STR_NOTIFICATION_GUER_INC;
|
||||
color[] = {0, 0.5, 0, 1};
|
||||
sound = "taskUpdated";
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user