# Remote Control Car Welcome to Remote Control Car on Exercism's jq Track. If you need help running the tests or submitting your code, check out `HELP.md`. If you get stuck on the exercise, check out `HINTS.md`, but try and solve it without using those first :) ## Introduction ## Functions You can define your own **custom functions** in `jq` to encapsulate whatever logic you need. _Functions_ act just like builtins: they take an input and emit zero, one or more outputs. ### Defining a function You can define a `jq` _function_ using the following syntax: ```jq # no arguments def funcname: expression; # or with arguments def funcname(args): expression; ``` - starts with `def` keyword, - a colon before the function body, - the body consists of a single expression, - ends with a semicolon, - like the rest of `jq` syntax, you can use arbitrary whitespace for readability. ### Where to put functions _Functions_ must be defined before they are used: this is an error: ```jq def A: B(10); def B(n): n + 1; A # => error: B/1 is not defined ``` This implies you have to place _functions_ at the top of your `jq` code, prior to the "main" expression. #### Nested functions _Functions_ can be nested: ```jq def A: def B(n): n + 1; B(10) ; A # => 11 ``` Here, the `B` _function_ is only visible in the body of `A`. ### Scope A _function_ introduces a new **scope** for variables and nested functions. ### Arguments _Function_ **arguments** are separated by _semi-colons_ not commas. For example, a _function_ that takes a number, and then adds a number and multiplies by a number: ```jq def add_mul(adder; multiplier): (. + adder) * multiplier; 10 | add_mul(5; 4) # => 60 ``` ~~~~exercism/note Semi-colons are needed because comma already has a purpose in `jq`: an operator that joins streams. Using a comma instead of a semi-colon will attempt to make two calls to a _1-argument_ `add_mul` function, which doesn't exist and therefore will fail on the first attempted call: ```jq 10 | add_mul(5, 4) # error: add_mul/1 is not defined ``` ~~~~ #### Arguments are _expressions_ Function _arguments_ are filters, not values. In this sense, they act like what other languages describe as callbacks: Using the `add_mul` function as an example: ```jq 10 | add_mul(. + 5; . - 2) # => 200 ``` What's happening here? - the `adder` argument gets the _expression_ `. + 5` - when the function does `. + adder`, that becomes `. + . + 5` - that evaluates to 25 since `. == 10` - similarly, the `multiplier` argument is the expression `. - 2` - that evaluates to 8 - then the result is `25 * 8 == 200` #### Arguments as values Sometimes you'll want to "materialize" an _argument_ into a variable: ```jq def my_func(arg): arg as $arg | other stuff ... ; ``` There's a shorthand for this: ```jq def my_func($arg): other stuff ... ; ``` Take note that this is just "syntactic sugar": the name `arg` with no `$` is still in scope in the _function_. ### Arity _Functions_ have an **arity** -- the number of _arguments_ they take. _Functions_ can use the same name with different _arities_. The builtin [`range`][man-range] function demonstrates this: `range/1`, `range/2` and `range/3` all co-exist. This can be useful for defining recursive functions that carry state via arguments. For example `map` _could_ be implemented like: ```jq def my_map($accumulator; func): if length == 0 then $accumulator else first as $elem | .[1:] | my_map($accumulator + [$elem | func]; func) end ; def my_map(func): my_map([]; func) ; [1, 2, 3, 4] | my_map(. * 10) # => [10, 20, 30, 40] ``` ### Recursion `jq` will perform tailcall optimization, but for 0-arity functions only. ### Modules A `jq` module is a file containing only functions. Modules are included into a jq program with the [`include`][man-include] or [`import`][man-import] commands. [man-range]: https://jqlang.github.io/jq/manual/v1.7/#range [man-import]: https://jqlang.github.io/jq/manual/v1.7/#import-relativepathstring-as-name [man-include]: https://jqlang.github.io/jq/manual/v1.7/#include-relativepathstring ## Instructions In this exercise you'll be playing around with a remote controlled car, which you've finally saved enough money for to buy. Cars start with full (100%) batteries. Each time you drive the car using the remote control, it covers 20 meters and drains one percent of the battery. The car's nickname is not known until it is created. The remote controlled car has a fancy LED display that shows two bits of information: - The total distance it has driven, displayed as: `" meters"`. - The remaining battery charge, displayed as: `"Battery at %"`. If the battery is at 0%, you can't drive the car anymore and the battery display will show `"Battery empty"`. ## 1. Create a brand-new remote controlled car Implement the `new_remote_control_car/0` function to return a brand-new remote controlled car object: ```jq new_remote_control_car # => { # "battery_percentage": 100, # "distance_driven_in_meters": 0, # "nickname": null # } ``` ## 2. Create a brand-new remote controlled car with a nickname Implement the `new_remote_control_car/1` function to return a brand-new remote controlled car object with a provided nickname: ```jq new_remote_control_car("Blue") # => { # "battery_percentage": 100, # "distance_driven_in_meters": 0, # "nickname": "Blue" # } ``` ## 3. Display the distance Implement the `display_distance/0` function that takes a car object as input and outputs the distance string as displayed on the LED display: ```jq new_remote_control_car | display_distance # => "0 meters" ``` ## 4. Display the battery percentage Implement the `display_battery/0` function that takes a car object as input and outputs the battery percentage string as displayed on the LED display: ```jq new_remote_control_car | display_battery # => "Battery at 100%" ``` If the battery is at 0%, the battery display will show "Battery empty". ## 5. Driving changes the battery and distance driven Implement the `drive/0` function that: - takes a car object as input - updates the number of meters driven by 20 - drains 1% of the battery - outputs the modified car object ```jq new_remote_control_car("Red") | drive # => { # "battery_percentage": 99, # "distance_driven_in_meters": 20, # "nickname": "Red" # } ``` ## 6. Account for driving with a dead battery Update the `drive/0` function to not increase the distance driven nor decrease the battery percentage when the battery is drained (at 0%): ```jq { battery_percentage: 0, distance_driven_in_meters: 2000, nickname: "Red" } | drive # => { # "battery_percentage": 0, # "distance_driven_in_meters": 2000, # "nickname": "Red" # } ``` ## Source ### Created by - @glennj