Friday, August 2, 2013

Best Job Ever at the Best Camp Ever

I just finished up 8 weeks of teaching Maya, Java, Scratch and Fusion2 to kids ages 7-18 via iD Tech camps at Emory. It was my second summer being an instructor (I taught Maya and Web/Graphic design 2 years ago) and it was a ton of fun.

[pie in the face]



iD Tech is probably a part of the reason I got into DMD at Penn. I took the 3D Modeling/Animation course for 3 weeks in between my junior and senior years of high school and basically did a crash course on Maya so I could make a portfolio for myself. This was the first thing I ever made in Maya:

[I thought Maya was so cool - it was love at first sight.]






Saturday, June 1, 2013

End Chapter

So, I graduated!

[proof, repping ATL]


It was a blur of a day, Biden gave a speech, a lot of photos were taken that I haven't even posted on facebook yet, and there was a LOT of family and friends in town for me. My mom, my best friend and I drove 13 hours back to Atlanta with everything (important) that I acquired during my 4 years at Penn and it was/still is weird to not know when I'm going back. 

Penn was an incredible experience and I'm so glad I went. DMD was so awesome and I met so many people that I wish I could have spent more time with! I will miss my casa de locas, all of my favorite places to eat in Philly (which could have their own blog), Penn squirrels, Locust Walk, my ZTA family, my DMDers, being around so many different people all the time, and lots of other things. 
I wasn't quite ready to leave all those things yet...




Friday, April 26, 2013

Demo Days

Demo Day finally arrived! I did a powerpoint on my project and my results were right in line with what I was hoping for. Player that "looked farther ahead" were more intelligent and made better decisions than Players that only looked one ply ahead.

For Intelligence Level 1 v. Intelligence Level 1, the characters fought on par, keeping close scores the whole time and having a relatively long fight length:

For Intelligence Level 3 v. Intelligence Level 1 the Level 3 beat Level 1 by a considerable amount and in a relatively short time:

Sunday, April 21, 2013

Collisions, Triggers, Reversing Animations

Right now I'm working on reversing the sword animation when a potential collision between two swords is triggered. It is a lot more complicated than I anticipated! I had been using Unity's mecanim animation system because of the motion graph it provides, but it seems that it may not be very well suited for reversing the animations at an instant's notice...

Thursday, April 18, 2013

Sword Actions

I decided to use simple sword motions instead of whole character motions. I am more interested in the algorithm and how it applies to swordplay than I am the actual animations, so I created a few quick animations of just the sword in Maya for moving Forward, moving Backward, strike Left, strike Mid, strike Right, defend Left, defend Mid and defend Right.

Thursday, April 11, 2013

Project poster

I created a poster for the poster session describing what my project is all about. Game trees are pretty cool!





Sunday, April 7, 2013

Checkers = solved

I've finally got my checkers game working correctly with game tree logic. In the end I used a 2d array and checked the validity of the moves depending on their start and end spaces. There was also a bit of hard-coding. I feel like I could have probably done it in a more systematic way but I couldn't figure it out and I figured since this was not the problem I'm actually trying to solve it's fine if I just lay down the rules manually.

The evaluation function I ended up using takes into account how many pieces of each color there are on the board, how far each non-king is away from the edge and how many kings there are. The function that gives a number value to a board evaluates the boards "statically" so that it can decide how good or bad of a board it is based only on it's current state.