-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.qmd
More file actions
67 lines (46 loc) · 2.81 KB
/
index.qmd
File metadata and controls
67 lines (46 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
title: "POLYMORPHIC GAMES"
---

Polymorphic Games is an experimental video game development studio based at the University of Idaho. We develop video games, interactive simulations, and visualizations that feature STEM concepts as core mechanics.
Our main focus is **Evolutionary Games** that feature enemies that adapt to the player using mathematical models of biological evolution.
We have also collaborated with many different researchers to help them represent their model systems as interactive simulations or dynamic visualizations.
# EVOLUTIONARY GAMES
Instead of pre-programming, scripted enemy behaviors to escalate difficulty, our games use populations of creatures that evolve specifically to beat your strategy. Each creature has its own traits that it can pass onto its offspring. After you beat one wave of creatures, the creatures that were the hardest to beat reproduce and you’ll fight their offspring in the next wave. Evolving traits include features like size, speed, damage, resistances, and behavior. We use real principles of evolutionary biology to create a model that includes all the components of real evolution — variation, inheritance, selection, and time — just operating at a much faster pace. This creates dynamic enemies that adapt to how YOU play the game. We just give evolution the space to work.
[*Learn more about our games...*](/Games/index.qmd)
# DEVELOPMENT MODEL
Our studio is based on the University of Idaho campus and populated by undergraduate students. A university setting is the one place where you can find programmers, artists, writers, musicians, marketers, and biologists — everyone you need to make a video game with foundations in evolutionary biology. We hire insanely talented teams of undergraduate students to develop our games. This gives us a team that can think outside the box, and it provides a great student experience. Our employees get to build skills in communication, leadership, and collaboration that they take with them when they graduate, all while honing their skills in their own trade.
[*Learn more about our team...*](/People/index.qmd)
# SUPPORT
Polymorphic Games has been made possible through grants and support from the following:
```{r}
#| output: false
#| echo: false
library(rlang)
library(tidyverse)
library(tidyr)
library(readxl)
library(gt)
library(gtExtras)
support <- read_excel("support.xlsx")
```
```{r}
#| echo: false
support %>%
gt() %>%
gt_theme_guardian() %>%
tab_caption("Funding Sources: Polymorphic Games") %>%
fmt_currency(
columns = c("Total Award", "Studio Funding"),
currency = "USD", decimals=0) %>%
cols_width(
Title ~ px(250),
ends_with("rd") ~ px(90),
CoPIs ~ px(80),
everything() ~ px(80)
) %>%
fmt_date(
columns = c("Start", "End"),
date_style = "yM"
)
```