MCPcopy Create free account
hub / github.com/crossuo/crossuo / CheckStaticTileFilterFiles

Method CheckStaticTileFilterFiles

src/CrossUO.cpp:712–866  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

710}
711
712void CGame::CheckStaticTileFilterFiles()
713{
714 memset(&m_StaticTilesFilterFlags[0], 0, sizeof(m_StaticTilesFilterFlags));
715
716 auto path = g_App.FilePath("data");
717 fs_path_create(path);
718
719 auto filePath = fs_path_join(path, "cave.txt");
720 if (!fs_path_exists(filePath))
721 {
722 CFileWriter file;
723 file.Init(filePath);
724 file.Print("#Format: graphic\n");
725 for (int i = 0x053B; i < 0x0553 + 1; i++)
726 {
727 if (i != 0x0550)
728 {
729 file.Print("0x%04X\n", i);
730 }
731 }
732 }
733
734 filePath = fs_path_join(path, "vegetation.txt");
735 CFileWriter vegetationFile;
736 if (!fs_path_exists(filePath))
737 {
738 vegetationFile.Init(filePath);
739 vegetationFile.Print("#Format: graphic\n");
740 static const int vegetationTilesCount = 178;
741 static const uint16_t vegetationTiles[vegetationTilesCount] = {
742 0x0D45, 0x0D46, 0x0D47, 0x0D48, 0x0D49, 0x0D4A, 0x0D4B, 0x0D4C, 0x0D4D, 0x0D4E, 0x0D4F,
743 0x0D50, 0x0D51, 0x0D52, 0x0D53, 0x0D54, 0x0D5C, 0x0D5D, 0x0D5E, 0x0D5F, 0x0D60, 0x0D61,
744 0x0D62, 0x0D63, 0x0D64, 0x0D65, 0x0D66, 0x0D67, 0x0D68, 0x0D69, 0x0D6D, 0x0D73, 0x0D74,
745 0x0D75, 0x0D76, 0x0D77, 0x0D78, 0x0D79, 0x0D7A, 0x0D7B, 0x0D7C, 0x0D7D, 0x0D7E, 0x0D7F,
746 0x0D80, 0x0D83, 0x0D87, 0x0D88, 0x0D89, 0x0D8A, 0x0D8B, 0x0D8C, 0x0D8D, 0x0D8E, 0x0D8F,
747 0x0D90, 0x0D91, 0x0D93, 0x12B6, 0x12B7, 0x12BC, 0x12BD, 0x12BE, 0x12BF, 0x12C0, 0x12C1,
748 0x12C2, 0x12C3, 0x12C4, 0x12C5, 0x12C6, 0x12C7, 0x0CB9, 0x0CBC, 0x0CBD, 0x0CBE, 0x0CBF,
749 0x0CC0, 0x0CC1, 0x0CC3, 0x0CC5, 0x0CC6, 0x0CC7, 0x0CF3, 0x0CF4, 0x0CF5, 0x0CF6, 0x0CF7,
750 0x0D04, 0x0D06, 0x0D07, 0x0D08, 0x0D09, 0x0D0A, 0x0D0B, 0x0D0C, 0x0D0D, 0x0D0E, 0x0D0F,
751 0x0D10, 0x0D11, 0x0D12, 0x0D13, 0x0D14, 0x0D15, 0x0D16, 0x0D17, 0x0D18, 0x0D19, 0x0D28,
752 0x0D29, 0x0D2A, 0x0D2B, 0x0D2D, 0x0D34, 0x0D36, 0x0DAE, 0x0DAF, 0x0DBA, 0x0DBB, 0x0DBC,
753 0x0DBD, 0x0DBE, 0x0DC1, 0x0DC2, 0x0DC3, 0x0C83, 0x0C84, 0x0C85, 0x0C86, 0x0C87, 0x0C88,
754 0x0C89, 0x0C8A, 0x0C8B, 0x0C8C, 0x0C8D, 0x0C8E, 0x0C93, 0x0C94, 0x0C98, 0x0C9F, 0x0CA0,
755 0x0CA1, 0x0CA2, 0x0CA3, 0x0CA4, 0x0CA7, 0x0CAC, 0x0CAD, 0x0CAE, 0x0CAF, 0x0CB0, 0x0CB1,
756 0x0CB2, 0x0CB3, 0x0CB4, 0x0CB5, 0x0CB6, 0x0C45, 0x0C46, 0x0C49, 0x0C47, 0x0C48, 0x0C4A,
757 0x0C4B, 0x0C4C, 0x0C4D, 0x0C4E, 0x0C37, 0x0C38, 0x0CBA, 0x0D2F, 0x0D32, 0x0D33, 0x0D3F,
758 0x0D40, 0x0CE9
759 };
760
761 for (int i = 0; i < vegetationTilesCount; i++)
762 {
763 const int64_t flags = g_Game.GetStaticFlags(vegetationTiles[i]);
764 if ((flags & 0x00000040) != 0)
765 {
766 continue;
767 }
768 vegetationFile.Print("0x%04X\n", vegetationTiles[i]);
769 }

Callers

nothing calls this directly

Calls 14

fs_path_createFunction · 0.85
fs_path_joinFunction · 0.85
fs_path_existsFunction · 0.85
str_to_intFunction · 0.85
FilePathMethod · 0.80
GetStaticFlagsMethod · 0.80
ReadTokensMethod · 0.80
c_strMethod · 0.80
InitMethod · 0.45
PrintMethod · 0.45
IsEOFMethod · 0.45
emptyMethod · 0.45

Tested by

no test coverage detected