This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
crpl:crpltutorial:code_examples [2014/10/01 19:02] – external edit 127.0.0.1 | crpl:crpltutorial:code_examples [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ~~DISCUSSION~~ | + | |
- | < | + | |
< | < | ||
====== Code Examples ====== | ====== Code Examples ====== | ||
+ | |||
Code examples contributed by map makers and coders alike. Feel free to submit your own - it will be much appreciated. | Code examples contributed by map makers and coders alike. Feel free to submit your own - it will be much appreciated. | ||
You can also view the scripts in any map: make a copy of the map you want to inspect, rename the copy " | You can also view the scripts in any map: make a copy of the map you want to inspect, rename the copy " | ||
+ | |||
+ | <wrap hi> | ||
===== Manage Treasure Chests in Credits Mission ===== | ===== Manage Treasure Chests in Credits Mission ===== | ||
Line 864: | Line 866: | ||
</ | </ | ||
< | < | ||
+ | |||
+ | =====GetClosestUnitToCoords===== | ||
+ | A customizable method to grab a nearest unit of any kind. Specify what types of units you want to grab, at what position, and with what radius. Strings are used for clarity to grab units that you need, you can delete or comment out units you wont be using once you copy the code. The code contains 3 methods that are commented for use on the battle-field. Contains two additional convenience methods. | ||
+ | < | ||
+ | #Warning: use this convenience function sparingly, tens of CRPL Cores | ||
+ | #running this all at once every frame can slow the game down. | ||
+ | |||
+ | #Notation: x y f1 - i1 | ||
+ | #eg. CurrentCoords 10 @GetClosestUnitToCoords ->unit | ||
+ | #If all units are outside of the maxDistance or none found returns integer value ' | ||
+ | : | ||
+ | asfloat -> | ||
+ | asfloat ->gcu_y | ||
+ | asfloat ->gcu_x | ||
+ | StackSize -> | ||
+ | |||
+ | # Reference: https:// | ||
+ | # Place Unit Types that you /WANT/ to look for here. | ||
+ | # Simply comment '#' | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | #" | ||
+ | " | ||
+ | " | ||
+ | # ===== | ||
+ | |||
+ | #Finding the boundary stack size (how many elements were added to stack) | ||
+ | #and then forming a list from the units we want. | ||
+ | StackSize -> | ||
+ | CreateList -> | ||
+ | < | ||
+ | -> | ||
+ | < | ||
+ | loop | ||
+ | |||
+ | # | ||
+ | -1 -> | ||
+ | 999999 -> | ||
+ | |||
+ | #retrieve /all/ nearby units | ||
+ | |||
+ | # x y distance boolean(true-square, | ||
+ | # unit checks have been ordered in perceived processing complexity | ||
+ | <-gcu_x <-gcu_y < | ||
+ | < | ||
+ | < | ||
+ | -> | ||
+ | < | ||
+ | #get the distance | ||
+ | < | ||
+ | #is that distance closer? | ||
+ | < | ||
+ | #do we care about this unit type? | ||
+ | < | ||
+ | #set our new baseline distance and unit | ||
+ | < | ||
+ | < | ||
+ | endif | ||
+ | endif | ||
+ | loop | ||
+ | endif | ||
+ | |||
+ | < | ||
+ | |||
+ | #Function :UnitCoords | ||
+ | #Simple convenience method. Takes a unit and returns the coordinates. | ||
+ | #' | ||
+ | #Notation: n1 - x y | ||
+ | #eg. < | ||
+ | :UnitCoords | ||
+ | ->u | ||
+ | <-u CONST_COORDX GetUnitAttribute | ||
+ | <-u CONST_COORDY GetUnitAttribute | ||
+ | |||
+ | #Function : | ||
+ | #This function an object, then a list and returns a boolean value. | ||
+ | #Notation: L1 n1 - b1 | ||
+ | #eg. <-myList < | ||
+ | : | ||
+ | -> | ||
+ | -> | ||
+ | false -> | ||
+ | |||
+ | < | ||
+ | < | ||
+ | true -> | ||
+ | break | ||
+ | endif | ||
+ | loop | ||
+ | |||
+ | < | ||
+ | </ | ||
+ | < | ||
+ | |||
+ | |||
+ | ===CRPL generating CRPL=== | ||
+ | This CRPL will generate CRPL with custom program (if it is in the map scripts) | ||
+ | < | ||
+ | CreateUnit(" | ||
+ | AddScriptToUnit(< | ||
+ | </ | ||
+ | <sub> Stolen from Teknotiss(who took it from virgil), where pyramids make golems. I simply changed golem to unit. Added by cpaca, known as Karma' |