Fam Time
Fam Time is an Australian television comedy series produced by the Seven Network and set to screen in 2020. The series is created by Michael Horrocks and directed by Hayden Guppy.
Fam Time | |
---|---|
Genre | |
Created by | Michael Horrocks |
Written by |
|
Directed by | Hayden Guppy |
Starring | |
Country of origin | Australia |
Original language(s) | English |
No. of series | 1 |
Production | |
Executive producer(s) | Michael Horrocks |
Producer(s) |
|
Camera setup | Multi-camera |
Running time | 30 minutes |
Production company(s) | Seven Studios |
Release | |
Original network | Seven Network |
Picture format | 576i (SDTV) 1080i (HDTV) |
Audio format | Stereo |
Original release | 2020 |
Fam Time follows the story of the highly dysfunctional blended Box family which, like most families today, is struggling to combine their online and everyday lives in the suburbs.[1][2]
Cast
- Michala Banas as Belinda Box
- Benson Jack Anthony as Rylan Box
- Duncan Fellows as John Box (aka "Handy Andy")
- Rhonda Burchmore as Grandma Viv (aka "Foxy Box")
- Karina Banno as Tahnee Box
- Chloe De Los Santos as Cherry Box
- Tainui Tukiwaho as Bill Whata
- Mathilde Anglade as Claudette
gollark: - Checks if the available-items list already contains the item needed. If so, just return that.- If not, checks for recipes to do what is wanted- If one exists, iterate over them (not sure what to *do* with them)- If none exists, we can't do anything, so just return no tasks, no costs and no outputs.
gollark: ```rusttype Items = HashMap<ItemType, u32>;fn quantity(items: &Items, desired: &ItemType) -> u32 { if let Some(available_quantity) = items.get(desired) { *available_quantity } else { 0 }}fn contains(items: &Items, desired: &Item) -> bool { quantity(items, &to_item_type(desired)) >= desired.quantity}fn satisfies(available: &Items, desired: &Items) -> bool { for (typ, desired_quantity) in desired.iter() { if quantity(available, typ) < *desired_quantity { return false } } true}fn to_map(is: &Vec<Item>) -> Items { let out = HashMap::new(); for i in is.iter() { out.entry(to_item_type_clone(i)) .and_modify(|e| { *e += 1 }) .or_insert(0); } out}fn one_item(i: Item) -> Items { let out = HashMap::new(); out.insert(to_item_type(&i), i.quantity); out}#[derive(Debug, Deserialize, PartialEq, Eq, Serialize, Clone)]pub struct CraftingResult { pub tasks: Vec<Recipe>, pub costs: Items, pub outputs: Items}fn solve(desired: Item, available: Items, recipes: &MultiMap<ItemType, Recipe>) -> CraftingResult { if contains(&available, &desired) { // If our available items list already contains the desired item, yay, we can just do nothing return CraftingResult { tasks: vec![], costs: one_item(desired), outputs: one_item(desired) } } if let Some(recipes) = recipes.get_vec(&to_item_type(&desired)) { for recipe in recipes.iter() { let result = solve() // ??? } } else { CraftingResult { tasks: vec![], costs: HashMap::new(), outputs: HashMap::new() } }}```My code, or at least part of it.
gollark: That is NOT THE HARD PART.
gollark: (I'm still confused though)
gollark: People have already given helpful suggestions how to, soo...
See also
References
- Knox, David (6 June 2019). "Seven announces new sitcom, Fam Time". TV Tonight. Retrieved 6 June 2019.
- "Seven Studios' New Comedy Fam Time". 7Plus. Seven West Media. 6 June 2019. Retrieved 1 February 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.