view src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle-network/operations/NetworkAppendChildAtOperation.cs @ 12:b71d9ea6bd8e

Add Network Operation Class. this codes can not test yet.
author Kazuma
date Sun, 23 Oct 2016 12:25:57 +0900
parents
children
line wrap: on
line source

using UnityEngine;
using System.Collections;

public class NetworkAppendChildAtOperation : NodeOperation {

	private int Position;

	public NetworkAppendChildAtOperation() {
		this.Position = -2;
	}

	public NetworkAppendChildAtOperation(int pos){
		this.Position = pos;
	}

	public Command getCommand() {
		return Command.APPEND_CHILD;
	}

	public Either<Error, TreeNode> invoke (TreeNode target) {
		return target.getChildren().addNewChildAt(this.Position);
	}

	public int getPosition () {
		return this.Position;
	}

	public string getKey() {
		return null;
	}

	public byte[] getValue() {
		return null;
	}
}