public void CheckReportCreation(string text, string expected)
        {
            MathBlock testObject = new MathBlock(text);
            string    actual     = testObject.Create();

            Assert.Equal(expected, actual);
        }
Ejemplo n.º 2
0
        protected override void SolveInstance(IGH_DataAccess DA)
        {
            string text = string.Empty;

            DA.GetData(0, ref text);

            string    reportPart;
            MathBlock reportObject = new MathBlock(text);

            reportPart = reportObject.Create();

            DA.SetData(0, reportPart);
        }
Ejemplo n.º 3
0
	// Use this for initialization
	void Start()
	{
		GameManager.instance.registerTeam(this.teamNumber, this);
		this.cameraShake = FindObjectOfType<CameraShake>();

		// initialize cache
		this.self = transform;
		this.block = ResourceManager.instance.mathBlockPrefab;

		this.selectedBlock = null;
		this.blockGrid = new MathBlock[this.row, this.col];
		this.blockTransform = new Transform[this.row, this.col];

		Vector3 curr = transform.position;
		GameObject temp;
		for(int i=0 ; i<this.row ; i++)
		{
			for(int j=0 ; j<this.col ; j++)
			{
				// spawn a block
				temp = Instantiate(block, curr, Quaternion.identity, blockGroup.transform);
				temp.name = $"block-{i}-{j}";

				// initialize
				MathBlock mb =  temp.GetComponent<MathBlock>();
				mb.container = this;
				mb.calculate(this.getBlockRandomValue());

				this.blockGrid[i, j] = mb;
				this.blockTransform[i, j] = temp.transform;

				curr.x += this.colSize;
			}
			curr.x = self.position.x;
			curr.y -= this.rowSize;
		}
	}
        public void CorrectData(string text, string expected)
        {
            MathBlock testObject = new MathBlock(text);

            Assert.Equal(text, testObject.Text);
        }
Ejemplo n.º 5
0
	public void onSelect(MathBlock mb)
	{
		// select first block
		if(!this.selectedBlock)
		{
			this.selectedBlock = mb;
			return;
		}
		// unselect block
		if(this.selectedBlock == mb)
		{
			this.selectedBlock = null;
			return;
		}

		// select right block
		if(this.selectedBlock.value == mb.value)
		{
			Debug.Log("Correct!");

			// attack opponent
			Container opponent = GameManager.instance.queryTeam(1 - this.teamNumber);
			System.Tuple<MathBlock, MathBlock> targets = opponent.getTargets();


			// attack first block
			GameObject bullet1 = Instantiate(ResourceManager.instance.bulletPrefab, this.selectedBlock.self.position, Quaternion.identity);
			bullet1.transform
			.DOMove(targets.Item1.self.position, this.attackDuration)
			.OnComplete( () =>
				{
					targets.Item1.calculate(this.getBlockRandomValue());
					targets.Item1.anim.SetBool(MathBlock.IS_AIMED, false);
					Destroy(bullet1);

					// camera shake
					cameraShake.addForce(Util.unitVec2() * this.forceScale);

					// add score
					this.score++;
					this.textScore.addScore();
					this.textScore.setText($"Score: {this.score}");

					// play audio
					
				}
			);

			// attack second one
			GameObject bullet2 = Instantiate(ResourceManager.instance.bulletPrefab, mb.self.position, Quaternion.identity);
			bullet2.transform
			.DOMove(targets.Item2.self.position, this.attackDuration)
			.OnComplete( () =>
				{
					targets.Item2.calculate(this.getBlockRandomValue());
					targets.Item2.anim.SetBool(MathBlock.IS_AIMED, false);
					Destroy(bullet2);
				}
			);

			// re-generate blocks
			this.selectedBlock.calculate(this.getBlockRandomValue());
			mb.calculate(this.getBlockRandomValue());
			this.selectedBlock = null;
		}
		// wrong selection
		else
		{
			Debug.Log("Bu~Bu~~desuwa");

			// punishment
			this.selectedBlock.calculate(this.selectedBlock.value);
			mb.calculate(mb.value);
			this.selectedBlock = null;
		}
	}