ocannoli-IterationExercise

var boolDoRefresh;
 
function setup() {
  createCanvas(400, 400);
  boolDoRefresh = true;
}
 
function draw() {
  if (boolDoRefresh) {
		background(255,255,255);
    stroke(51);
		strokeWeight(4);
		var gridSize=8;
		for(var i=0, x=10;i<=gridSize;i++, x+=50){
			for(var k=0,y=10;k<=gridSize;k++,y+=50)
			{
				var r=random(3);
        if(r<0.3){
          ellipse(x+10,y+10,20,20);
        }
        else{
        rect(x,y,20,20);
        }
			}
		}
    boolDoRefresh = false;
  }
}
 
function mousePressed() {
  boolDoRefresh = true;
}

 

ocannoli-Reading01

In tenet four of the Critical Engineering Manifesto, its states that in order for one to be a critical engineer, one must consider implications of their work. Moreover, progressing technology or trying something just because one can is dangerous if the repercussions of one's actions are not considered beforehand. Especially in the areaing of fast technological advances, it is vital that a creator understand the impact that their programs, work, experiments, ideas, etc. can have on others and society as a whole. For example, this becomes essential during the discussion of A.I. when considering morality, impact on jobs, society, our laws etc. A critical engineer must understand and weigh the importance of the progress with the effects of the creations impact.

 

ocannoli-lookingoutwards01

        Detroit Become Human is an adventure game officially released May 25 2018 by Quantic Dream that emphasizes mainly the importance of choices and moral conflicts. I admire the extremely complex web of decisions that creates the basis for this game, the stunning and tedious use of motion capture graphics, and the ability to create a narrative so relevant and important to the atmosphere of today. The project took five and a half years to complete, with about 180 employees of Quantic Dream and 250 actors working on the project not including outsourced work. Although Quantic Dream used pre-existing software to create their visuals, they had to develop their own software in order to track and debug the insane amount of code in the numerous branches of the narrative, so in a sense it is a combination of the new and the old. Director David Cage and his team were definitely inspired by the legacy of choose your own adventure type games and narratives such as the Blade Runner series, Westworld, A.I. etc.; however, it still adds elements to create a twist to all its influences. It is important to note that Detroit Become Human does have its flaws. Many criticize that the narrative is too cliche and that the gameplay is somewhat lackluster and not as engaging as a game should be. Though many of its criticisms could be addressed by the new medium others claim the game is pushing towards. This new medium being a future of more cinematic videos games or even a future where the lines between film and audience input and interaction are blurred, which I find so exciting especially when the narrative has such valuable societal implications and relevant lessons.

Detroit Become Human Launch Trailer:

Branches and Brief Gameplay:

Branching Narrative Example: