UMBC Games, Animation and Interactive Media

Game Development at the University of Maryland, Baltimore County

Page 5 of 12

2011 Digital Entertainment Conference

Make plans to come to the 2011 UMBC Digital Entertainment Conference (DEC) on Saturday, April 30th, starting at 10am in UMBC Lecture Hall 5. This day long event is organized by the UMBC Game Developers Club, and sponsored this year by Zynga.

The DEC is open to anyone, and features speakers from Firaxis Games, Pure Bang, and Big Rock Studios. Whether you are a High School student, go to UMBC or another University, or are already working in a different industry, you are sure find interesting information about how the games industry works, how some current developers got started, and what they do. If you are a game developer, you are sure to find High School students, UMBC students and students from other Universities who are interested in jobs in the games industry.

Global Game Jam wrap-up

Last weekend, 35 people were working madly in the UMBC GAIM lab as part of the 3rd annual Global Game Jam. At 5pm on Friday, in the midst of a campus-wide power outage, they watched they keynote video from a laptop held over my head in a dark lab, then learned the theme for this year’s jam: all games had to express somehow the theme “Extinction”. By about 7:00, the power was back on, and they’d formed into five teams, each trying to complete a game by Sunday. One short second power outage later(!), they were on their way.

All five games are online (along with 1475 other games from the 168 other sites world wide). The Global Game Jam is not a competition, but many sites do have some local awards, ours included. We had four awards, Best Game, Best Expression of the Theme, Best Art, and the an award judged by representatives from our site sponsor, NextCentury Corporation.

Continue reading

Global Game Jam starts THIS FRIDAY

The 2011 Global Game Jam starts this Friday at 5pm! If you want to participate, sign up on www.globalgamejam.org. More details at gaim.umbc.edu/global-game-jam.

Note that the total site capacity is limited. If you sign up and your jammer number is larger than 32, you are officially on the wait list. Since we don’t have an admissions fee, there will probably be some no-shows, but we won’t know how many until Friday night. Show up at 5pm, and if there are openings we will take you in jammer number order.

Global Game Jam 2011 registration open

Want to see what you can do in 48 hours? Game portfolio feeling a little thin? Have a feeling you’ll need a break by the time you’re two days into the Spring semester? Well, the Global Game Jam is entering its 3rd year, and for the 3rd year, UMBC will be the Baltimore host site January 28th-30th.

This is a 48 hour event, where teams from around the globe work to each develop a complete game over one weekend. The first year had 54 sites in 23 countries. Last year, there were 124 sites in 34 countries. The Baltimore site is open to participants at all skill levels, and it is not necessary to be a UMBC student to register. Just go to <http://globalgamejam.org/sites/2011/umbc> and register. Participation will be limited to the first 40 registrants.

The jam will start at 5PM on Friday, January 28th in the UMBC GAIM lab, room 005a in the ITE building. At that time, the theme for this year’s games will be announced, and we’ll brainstorm game ideas and form into teams. There is no need to come as a team: each individual has an equal chance to pitch their game ideas, and you can join the team whose game you like best. Teams will have until 3pm on Sunday, January 30th to develop their games. We’ll have demos of each game and selection of local awards, wrapping up by 5pm Sunday. Thanks to generous support by Next Century, there is no registration fee for the this site, but you must register for the UMBC site in advance at www.globalgamejam.org.

Hope to see many of you there!

National STEM Game Challenge

The White House announced the National STEM Video Game Challenge yesterday. This is a mobile game development contest, with a $50,000 grand prize and $25,000 prize for the best undergraduate or graduate student developed game, and a $25,000 prize for the best game reaching an underserved population.

Games should emphasize some specific (but fairly broad) Science, Technology, Engineering and Math skills. Submissions are due January 5th.

Graphics Trick: Schlick Approximation

Almost every graphics game developer I’ve met knows Schlick’s approximation for Fresnel reflectance. This approximation has all the features to be well used in games. It looks visually equivalent to the real Fresnel computation for unpolarized light, while being way easier to compute. However, very few developers have actually looked at Christophe Schlick’s original 1994 Computer Graphics Forum paper, “An Inexpensive BRDF Model for Physically-based Rendering“. That is a shame, because this paper has some really good ideas for coming up with other approximations for shader computation.

The basic idea is to come up with a rational function (ratio of two polynomials) as an approximation. There’s a long history of this in and out of graphics, but it usually has some inherent problems. Consider “Fast Phong Shading“, published by Bishop and Weimer in SIGGRAPH 1986. This method attempts to avoid the vector renormalization inherent in Phong normal interpolation by using a quadratic Taylor series. Unfortunately, Taylor expansion is inherently centered around a point, in this case the center of the triangle. The approximation will have some error by the time you get to the edge of the triangle, and two triangles sharing that edge won’t necessarily have the same amount of error in their normalization. For big triangles, this can result in a visible shading discontinuity along trangle edges. Not good.

Schlick’s idea is to express what’s important about any function as kernel conditions, then apply those as constraints. For his Fresnel approximation

F=F_0 + (1-F_0)(1-dot(H,V))^5

These constraints are that F should be 1 when dot(H,V)=0, F0 when dot(H,V)=1, and the first several derivatives of  F should also be 0 when dot(H,V)=1. In the paper, he also has similar approximations for the geometric attenuation and distribution terms of a Cook-Torrance shading model, but the method is a good one to know in general for reducing shader computation:

  1. Look at the function and pick the kernel conditions: value or derivatives at some critical points, desired integral over the whole domain, etc.
  2. Based on the way the function looks, choose a rational function with the right number of coefficients. This is still somewhat of a black art, since there will be many choices for numerator and denominator  polynomial that have the same number of coefficients as you have kernel conditions. For example, for four conditions, you could choose a cubic, quadratic numerator/linear denominator, linear numerator/quadratic denominator, or 1/cubic denominator.
  3. Solve for each coefficient
  4. Evaluate the total error, decide if it is good enough. If not, try a different rational function, or add extra kernel conditions to fix the problem.

Multi-variate functions are OK, though will potentially introduce many additional coefficients. This kind of approximation is usually best applied near the visual output end of a shader. Applied to computation too early on, and the small errors may be magnified by the intervening shader code. None the less, it can be a great way to reduce a computationally expensive shader.

« Older posts Newer posts »