本文整理汇总了C#中WinterLeaf.Engine.Classes.View.Creators.ObjectCreator.uniqueValue方法的典型用法代码示例。如果您正苦于以下问题:C# ObjectCreator.uniqueValue方法的具体用法?C# ObjectCreator.uniqueValue怎么用?C# ObjectCreator.uniqueValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WinterLeaf.Engine.Classes.View.Creators.ObjectCreator
的用法示例。
在下文中一共展示了ObjectCreator.uniqueValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: loadFilter
public void loadFilter(string selectedFilter, string staticFilter = "")
{
ArrayObject MatEdScheduleArray = "MatEdScheduleArray";
ArrayObject MatEdPreviewArray = "MatEdPreviewArray";
GuiDynamicCtrlArrayControl materialSelection = this.FOT("materialSelection");
GuiStackControl materialPreviewPagesStack = this.FOT("materialPreviewPagesStack");
GuiPopUpMenuCtrlEx materialPreviewCountPopup = this.FOT("materialPreviewCountPopup");
// manage schedule array properly
if (!MatEdScheduleArray.isObject())
MatEdScheduleArray = new ObjectCreator("ArrayObject", "MatEdScheduleArray").Create();
// if we select another list... delete all schedules that were created by
// previous load
for (int i = 0; i < MatEdScheduleArray.count(); i++)
Util.cancel(MatEdScheduleArray.getKey(i).AsInt());
// we have to empty out the list; so when we create new schedules, these dont linger
MatEdScheduleArray.empty();
// manage preview array
if (!MatEdPreviewArray.isObject())
MatEdPreviewArray = new ObjectCreator("ArrayObject", "MatEdPreviewArray").Create();
// we have to empty out the list; so when we create new guicontrols, these dont linger
MatEdPreviewArray.empty();
materialSelection.deleteAllObjects();
materialPreviewPagesStack.deleteAllObjects();
// changed to accomadate tagging. dig through the array for each tag name,
// call unique value, sort, and we have a perfect set of materials
if (staticFilter != "")
this.currentStaticFilter = staticFilter;
this.currentFilter = selectedFilter;
ArrayObject filteredObjectsArray = new ObjectCreator("ArrayObject").Create();
int previewsPerPage = materialPreviewCountPopup.getTextById(materialPreviewCountPopup.getSelected()).AsInt();
int tagCount = Util.getWordCount(this.currentFilter);
if (tagCount != 0)
{
for (int j = 0; j < tagCount; j++)
{
for (int i = 0; i < this.currentStaticFilter.count(); i++)
{
string currentTag = Util.getWord(this.currentFilter, j);
if (this.currentStaticFilter.getKey(i) == currentTag)
filteredObjectsArray.add(this.currentStaticFilter.getKey(i), this.currentStaticFilter.getValue(i));
}
}
filteredObjectsArray.uniqueValue();
filteredObjectsArray.sortd();
this.totalPages = Util.mCeil(filteredObjectsArray.count()/previewsPerPage);
//Can we maintain the current preview page, or should we go to page 1?
if ((this.currentPreviewPage*previewsPerPage) >= filteredObjectsArray.count())
this.currentPreviewPage = 0;
// Build out the pages buttons
this.buildPagesButtons(this.currentPreviewPage, this.totalPages);
int previewCount = previewsPerPage;
int possiblePreviewCount = filteredObjectsArray.count() - this.currentPreviewPage*previewsPerPage;
if (possiblePreviewCount < previewCount)
previewCount = possiblePreviewCount;
int start = this.currentPreviewPage*previewsPerPage;
for (int i = start; i < start + previewCount; i++)
this.buildPreviewArray(filteredObjectsArray.getValue(i));
filteredObjectsArray.delete();
}
else
{
this.currentStaticFilter.sortd();
// Rebuild the static filter list without tagged materials
ArrayObject noTagArray = new ObjectCreator("ArrayObject").Create();
for (int i = 0; i < this.currentStaticFilter.count(); i++)
{
if (this.currentStaticFilter.getKey(i) != "")
continue;
SimObject material = this.currentStaticFilter.getValue(i);
// CustomMaterials are not available for selection
if (!material.isObject() || material.isMemberOfClass("CustomMaterial"))
continue;
noTagArray.add("", material);
}
this.totalPages = Util.mCeil(noTagArray.count()/previewsPerPage);
//Can we maintain the current preview page, or should we go to page 1?
//.........这里部分代码省略.........