mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-01-26 19:12:07 -05:00
108 lines
2.3 KiB
C#
108 lines
2.3 KiB
C#
using System;
|
|
|
|
namespace ClassicalSharp {
|
|
|
|
public class StringBuffer {
|
|
|
|
public char[] value;
|
|
public int capacity;
|
|
|
|
public StringBuffer( int capacity ) {
|
|
this.capacity = capacity;
|
|
value = new char[capacity];
|
|
}
|
|
|
|
public StringBuffer Append( int index, char c ) {
|
|
value[index] = c;
|
|
return this;
|
|
}
|
|
|
|
public StringBuffer Append( int index, string s ) {
|
|
return Append( ref index, s );
|
|
}
|
|
|
|
public StringBuffer Append( ref int index, string s ) {
|
|
for( int i = 0; i < s.Length; i++ )
|
|
value[index++] = s[i];
|
|
return this;
|
|
}
|
|
|
|
public StringBuffer Append( ref int index, char c) {
|
|
value[index++] = c;
|
|
return this;
|
|
}
|
|
|
|
static char[] numBuffer = new char[20];
|
|
public StringBuffer AppendNum( ref int index, long num ) {
|
|
int numIndex = 0;
|
|
numBuffer[numIndex++] = (char)('0' + (num % 10));
|
|
num /= 10;
|
|
|
|
while( num > 0 ) {
|
|
numBuffer[numIndex++] = (char)('0' + (num % 10));
|
|
num /= 10;
|
|
}
|
|
|
|
for( int i = numIndex - 1; i >= 0; i-- )
|
|
value[index++] = numBuffer[i];
|
|
return this;
|
|
}
|
|
|
|
public StringBuffer Clear() {
|
|
for( int i = 0; i < capacity; i++ )
|
|
value[i] = '\0';
|
|
return this;
|
|
}
|
|
|
|
public void DeleteAt( int index ) {
|
|
for( int i = index; i < capacity - 1; i++ )
|
|
value[i] = value[i + 1];
|
|
value[capacity - 1] = '\0';
|
|
}
|
|
|
|
public void InsertAt( int index, char c ) {
|
|
for( int i = capacity - 1; i > index; i-- )
|
|
value[i] = value[i - 1];
|
|
value[index] = c;
|
|
}
|
|
|
|
public void InsertAt( int index, string s ) {
|
|
for( int i = 0; i < s.Length; i++ )
|
|
InsertAt( index + i, s[i] );
|
|
}
|
|
|
|
public bool Empty {
|
|
get {
|
|
for( int i = 0; i < capacity; i++ ) {
|
|
if( value[i] != '\0' )
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public int Length {
|
|
get {
|
|
int len = capacity;
|
|
for( int i = capacity - 1; i >= 0; i-- ) {
|
|
if( value[i] != '\0' )
|
|
break;
|
|
len--;
|
|
}
|
|
return len;
|
|
}
|
|
}
|
|
|
|
public string GetString() {
|
|
return new String( value, 0, Length );
|
|
}
|
|
|
|
public string GetSubstring( int length ) {
|
|
return new String( value, 0, length );
|
|
}
|
|
|
|
public override string ToString() {
|
|
return new String( value, 0, Length );
|
|
}
|
|
}
|
|
}
|