/******************************************************** * Array.h * * * * XFX Array class definition file * * Contains array helper methods * * Copyright © XFX Team. All Rights Reserved * ********************************************************/ #ifndef _SYSTEM_ARRAY_ #define _SYSTEM_ARRAY_ #include "FrameworkResources.h" #include using namespace System::Collections::Generic; #include namespace System { class Array { public: template static int BinarySearch(T array[], int index, int length, T value, IComparer* comparer) { return -1; } template static void Clear(T array[], int index, int length) { for(int i = index; i < (index + length); i++) { array[i] = null; } } template static void Copy(T sourceArray[], int sourceIndex, T destinationArray[], int destinationIndex, int length) { sassert(sourceArray != null, ""); sassert(destinationArray != null, ""); sassert(sourceIndex >= 0, ""); //printf("ARGUMENT_OUT_OF_RANGE in function %s, at line %i in file %s, argument \"%s\": %s\n", __FUNCTION__, __LINE__, __FILE__, "sourceIndex must be 0 or greater"); sassert(destinationIndex >= 0, ""); //printf("ARGUMENT_OUT_OF_RANGE in function %s, at line %i in file %s, argument \"%s\": %s\n", __FUNCTION__, __LINE__, __FILE__, "destinationIndex must be 0 or greater"); /*if((sourceIndex + length) > Length(sourceArray)) { #if DEBUG printf("ARGUMENT in function %s, at line %i in file %s\n", __FUNCTION__, __LINE__, __FILE__); #endif return; } if((destinationIndex + length) > Length(destinationArray)) { #if DEBUG printf("ARGUMENT in function %s, at line %i in file %s\n", __FUNCTION__, __LINE__, __FILE__); #endif return; }*/ for (int i = sourceIndex, j = destinationIndex; i < (sourceIndex + length); i++, j++) { destinationArray[j] = sourceArray[i]; } } template static int IndexOf(const T array[], const T value, const int startIndex, const int count) { for (int i = startIndex; i < count; i++) { if (array[i] == value) return i; } return -1; } template static void Reverse(T array[], int index, int length) { sassert(array != null, ""); //if ((Length(array) - index) < length) //printf("ARGUMENT in function %s, at line %i in file %s: %s\n", __FUNCTION__, __LINE__, __FILE__, "Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection."); int num = index; int num2 = (index + length) - 1; while (num < num2) { T obj2 = array[num]; array[num] = array[num2]; array[num2] = obj2; num++; num2--; } } }; } #endif //_SYSTEM_ARRAY_