From bd6e55826d8f8df53cc7f8186b6852d0b13d38af Mon Sep 17 00:00:00 2001 From: William JCM Date: Sat, 28 Aug 2021 20:16:19 +0200 Subject: [PATCH] Add StyleNames.h. --- src/CMakeLists.txt | 1 + src/Maps/StyleNames.h | 154 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 155 insertions(+) create mode 100644 src/Maps/StyleNames.h diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 25cd758..a0aa25a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -48,6 +48,7 @@ add_executable(MassBuilderSaveTool WIN32 Mass/Mass.cpp Maps/LastMissionId.h Maps/StoryProgress.h + Maps/StyleNames.h ToastQueue/ToastQueue.h ToastQueue/ToastQueue.cpp FontAwesome/IconsFontAwesome5.h diff --git a/src/Maps/StyleNames.h b/src/Maps/StyleNames.h new file mode 100644 index 0000000..e330e26 --- /dev/null +++ b/src/Maps/StyleNames.h @@ -0,0 +1,154 @@ +#pragma once + +// MassBuilderSaveTool +// Copyright (C) 2021 Guillaume Jacquemin +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#include + +#include + +using namespace Magnum; + +static const std::map style_names { + {100, "Iron"}, + {101, "Silver"}, + {102, "Gold"}, + {103, "Bronze"}, + {104, "Copper"}, + {105, "Nickel"}, + {106, "Cobalt"}, + {107, "Aluminium"}, + {108, "Titanium"}, + {109, "Platinum"}, + {110, "Gun Metal"}, + {111, "White"}, + {112, "White Metal"}, + {113, "White Gloss"}, + {114, "Grey"}, + {115, "Grey Metal"}, + {116, "Grey Gloss"}, + {117, "Dark Grey"}, + {118, "Dark Grey Metal"}, + {119, "Dark Grey Gloss"}, + {120, "Black"}, + {121, "Black Metal"}, + {122, "Black Gloss"}, + {123, "Red"}, + {124, "Red Metal"}, + {125, "Red Gloss"}, + {126, "Dark Red"}, + {127, "Dark Red Metal"}, + {128, "Dark Red Gloss"}, + {129, "Orange"}, + {130, "Orange Metal"}, + {131, "Orange Gloss"}, + {132, "Dark Orange"}, + {133, "Dark Orange Metal"}, + {134, "Dark Orange Gloss"}, + {135, "Yellow"}, + {136, "Yellow Metal"}, + {137, "Yellow Gloss"}, + {138, "Brown"}, + {139, "Brown Metal"}, + {140, "Brown Gloss"}, + {141, "Dark Brown"}, + {142, "Dark Brown Metal"}, + {143, "Dark Brown Gloss"}, + {144, "Leafgreen"}, + {145, "Leafgreen Metal"}, + {146, "Leafgreen Gloss"}, + {147, "Military Green"}, + {148, "Military Green Metal"}, + {149, "Military Green Gloss"}, + {150, "Green"}, + {151, "Green Metal"}, + {152, "Green Gloss"}, + {153, "Dark Green"}, + {154, "Dark Green Metal"}, + {155, "Dark Green Gloss"}, + {156, "Teal"}, + {157, "Teal Metal"}, + {158, "Teal Gloss"}, + {159, "Cyan"}, + {160, "Cyan Metal"}, + {161, "Cyan Gloss"}, + {162, "Blue"}, + {163, "Blue Metal"}, + {164, "Blue Gloss"}, + {165, "Blue Sky"}, + {166, "Blue Sky Metal"}, + {167, "Blue Sky Gloss"}, + {168, "Dark Blue"}, + {169, "Dark Blue Metal"}, + {170, "Dark Blue Gloss"}, + {171, "Purple"}, + {172, "Purple Metal"}, + {173, "Purple Gloss"}, + {174, "Dark Purple"}, + {175, "Dark Purple Metal"}, + {176, "Dark Purple Gloss"}, + {177, "Pink"}, + {178, "Pink Metal"}, + {179, "Pink Gloss"}, + {180, "Rosy Brown"}, + {181, "Rosy Brown Metal"}, + {182, "Rosy Brown Gloss"}, + {183, "Ivory"}, + {184, "Ivory Metal"}, + {185, "Ivory Gloss"}, + {186, "Slate Brown"}, + {187, "Slate Brown Metal"}, + {188, "Slate Brown Gloss"}, + {189, "Slate Green"}, + {190, "Slate Green Metal"}, + {191, "Slate Green Gloss"}, + {192, "Slate Blue"}, + {193, "Slate Blue Metal"}, + {194, "Slate Blue Gloss"}, + {195, "Slate Purple"}, + {196, "Slate Purple Metal"}, + {197, "Slate Purple Gloss"}, + {198, "White Glow"}, + {199, "White Radiance"}, + {200, "Red Glow"}, + {201, "Red Radiance"}, + {202, "Orange Glow"}, + {203, "Orange Radiance"}, + {204, "Yellow Glow"}, + {205, "Yellow Radiance"}, + {206, "Leafgreen Glow"}, + {207, "Leafgreen Radiance"}, + {208, "Green Glow"}, + {209, "Green Radiance"}, + {210, "Teal Glow"}, + {211, "Teal Radiance"}, + {212, "Cyan Glow"}, + {213, "Cyan Radiance"}, + {214, "Blue Glow"}, + {215, "Blue Radiance"}, + {216, "Purple Glow"}, + {217, "Purple Radiance"}, + {218, "Pink Glow"}, + {219, "Pink Radiance"}, + {220, "Grey Camo"}, + {221, "Dark Grey Camo"}, + {222, "Green Camo"}, + {223, "Dark Green Camo"}, + {224, "Brown Camo"}, + {225, "Dark Brown Camo"}, + {226, "Blue Camo"}, + {227, "Dark Blue Camo"}, +};