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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897
|
Player
======
The Player object is used to control a specific player/character. Player objects are tagged *player*.
**Note:** in Open Surge, companion objects can be used to give new abilities to players. Companion objects must be indicated in the character definition files (.chr) and are implemented as regular scripts. The engine will automatically spawn the companions as children of the appropriate Player objects.
*Example*
```cs
object "Display player name" is "companion"
{
player = parent; // since this object is configured as a
// companion, parent is the reference
// to the appropriate Player object
state "main"
{
Console.print("I am a companion of " + player.name);
}
}
```
Global
------
#### Player
`Player(playerName)`
Gets the Player object associated with a character in the level. If a player with the specified name doesn't exist in the level, there will be an error.
See also: [exists](#playerexists).
*Arguments*
* `playerName`: string. The name of a character, as defined in a *.chr* file stored in the *characters/* folder.
*Returns*
A Player object.
*Example*
```cs
using SurgeEngine.Player;
// Gives Surge 1 collectible each second
// Just place it in your level
object "Collectible Giver" is "entity", "awake"
{
player = Player("Surge");
state "main"
{
if(timeout(1))
state = "give collectible";
}
state "give collectible"
{
player.collectibles = player.collectibles + 1;
state = "main";
}
}
```
#### Player.get
`Player[i]`
Gets a Player object by its sequence number, as defined in the *players* entry of the level file.
See also: [count](#playercount).
*Arguments*
* `i`: number. An integer between `0` and `Player.count - 1`, inclusive.
*Returns*
A Player object.
#### Player.exists
`Player.exists(playerName)`
Checks if a player named `playerName` exists in the level.
*Arguments*
* `playerName`: string. The name of a character.
*Returns*
Returns `true` if such a player exists in the level.
#### Player.active
`Player.active`: [Player](#) object.
The player currently in focus.
See also: [focus](#focus), [hasFocus](#hasfocus), [focusable](#focusable).
*Example*
```cs
using SurgeEngine.Player;
// Tells the name of the active player
// Just place it in the level
object "Who am I" is "entity", "awake"
{
state "main"
{
player = Player.active;
Console.print("I am " + player.name);
destroy();
}
}
```
#### Player.count
`Player.count`: number, read-only.
The number of players in the level.
#### Player.initialLives
`Player.initialLives`: number, read-only.
The initial number of lives set by the engine.
Properties
----------
#### id
`id`: number, read-only.
A number that uniquely identifies the player in the Level.
See also: [name](#name).
*Available since:* Open Surge 0.6.1
#### name
`name`: string, read-only.
The name of the character.
See also: [id](#id).
#### direction
`direction`: number, read-only.
This number will be +1 if the player is facing right, or -1 if facing left.
See also: [hflip](#hflip).
*Example*
```cs
// let's check if the player is facing right or left
isFacingRight = (player.direction > 0);
isFacingLeft = (player.direction < 0);
```
#### input
`input`: [Input](/engine/input) object, read-only.
Reference to the Input object of the Player.
*Example*
```cs
using SurgeEngine.Player;
object "Application"
{
state "main"
{
player = Player.active;
if(player.input.buttonDown("right"))
Console.print("Player is holding right");
}
}
```
#### animation
`animation`: [Animation](/engine/animation) object, read-only.
Reference to the Animation object of the Player.
See also: [anim](#anim).
#### anim
`anim`: number.
A shortcut to `animation.id`: an integer corresponding to the current animation number.
See also: [animation](#animation), [id](/engine/animation#id).
#### anchor
`anchor`: [Vector2](/engine/vector2) object.
A shortcut to `animation.anchor`.
See also: [anchor](/engine/animation#anchor).
*Available since:* Open Surge 0.6.0
#### hotSpot
`hotSpot`: [Vector2](/engine/vector2) object.
A shortcut to `animation.hotSpot`.
See also: [hotSpot](/engine/animation#hotspot).
*Available since:* Open Surge 0.6.0.
*Note:* in versions prior to 0.6.0, you may get the hot spot using the [Animation](/engine/animation#hotspot) object.
#### actionSpot
`actionSpot`: [Vector2](/engine/vector2) object.
A shortcut to `animation.actionSpot`.
See also: [actionSpot](/engine/animation#actionspot).
*Available since:* Open Surge 0.6.0
#### actionOffset
`actionOffset`: [Vector2](/engine/vector2) object, read-only.
A shortcut to `animation.actionOffset`.
See also: [actionOffset](/engine/animation#actionoffset).
*Available since:* Open Surge 0.6.0
#### attacking
`attacking`: boolean, read-only.
Is the player attacking, i.e., jumping, rolling, charging or invincible? This flag will be modified if the player is aggressive or inoffensive.
See also: [aggressive](#aggressive), [inoffensive](#inoffensive).
#### midair
`midair`: boolean, read-only.
Is the player midair?
#### stopped
`stopped`: boolean, read-only.
Is the player stopped?
#### walking
`walking`: boolean, read-only.
Is the player walking?
#### running
`running`: boolean, read-only.
Is the player running?
#### jumping
`jumping`: boolean, read-only.
Is the player jumping?
#### springing
`springing`: boolean, read-only.
Is the player playing the "springing" animation, displayed just after hitting a spring?
#### braking
`braking`: boolean, read-only.
Is the player braking?
#### balancing
`balancing`: boolean, read-only.
Is the player balancing on a ledge?
#### waiting
`waiting`: boolean, read-only.
Is the player waiting? (happens after remaining stopped for a few seconds)
#### rolling
`rolling`: boolean, read-only.
Is the player rolling?
#### charging
`charging`: boolean, read-only.
Is the player charging a rolling movement?
#### pushing
`pushing`: boolean, read-only.
Is the player pushing a wall?
#### hit
`hit`: boolean, read-only.
Is the player getting hit (i.e., losing collectibles or a shield)?
See also: [getHit](#gethit).
#### blinking
`blinking`: boolean, read-only.
Is the player blinking? (happens just after getting hit)
#### dying
`dying`: boolean, read-only.
Is the player dying or drowning?
#### drowning
`drowning`: boolean, read-only.
Is the player drowning (i.e., dying underwater)?
See also: [underwater](#underwater), [dying](#dying).
#### breathing
`breathing`: boolean, read-only.
Is the player breathing an air bubble that is underwater?
See also: [underwater](#underwater), [breathTime](#breathtime).
#### crouchingDown
`crouchingDown`: boolean, read-only.
Is the player crouching down?
#### lookingUp
`lookingUp`: boolean, read-only.
Is the player looking up?
#### winning
`winning`: boolean, read-only.
Is the player displaying the "winning" animation (after clearing a level)?
#### underwater
`underwater`: boolean, read-only.
Is the player underwater? Players are considered to be underwater if they are below the [water level](/engine/level#waterlevel) or if their [forciblyUnderwater](#forciblyunderwater) flag is set to `true`.
See also: [secondsToDrown](#secondstodrown), [drowning](#drowning), [breathing](#breathing), [breathTime](#breathtime), [forciblyUnderwater](#forciblyunderwater), [forciblyOutOfWater](#forciblyOutOfWater), [waterlevel](/engine/level#waterlevel).
#### secondsToDrown
`secondsToDrown`: number, read-only.
The number of seconds to drown, if underwater.
See also: [underwater](#underwater), [drowning](#drowning), [breathTime](#breahtime).
#### topspeed
`topspeed`: number, read-only.
The maximum speed that the player can reach when running naturally, without rolling and with no external forces applied. Given in pixels per second.
See also: [capspeed](#capspeed).
#### capspeed
`capspeed`: number, read-only.
The maximum speed that the player can reach by normal means (e.g., rolling downhill), not considering external forces. Given in pixels per second.
See also: [topspeed](#topspeed).
*Available since:* Open Surge 0.6.1
#### hlockTime
`hlockTime`: number, read-only.
The time, in seconds, in which the player will not respond to horizontal input when on the ground. Defaults to zero.
See also: [hlock](#hlock).
*Available since:* Open Surge 0.6.1
#### transform
`transform`: [Transform](/engine/transform) object, read-only.
The transform of the Player.
#### collider
`collider`: [Collider](/engine/collider) object, read-only.
A collider associated with this Player.
#### shield
`shield`: string | `null`.
One of the following: *"shield"*, *"fire"*, *"thunder"*, *"water"*, *"acid"*, *"wind"* or `null` (if there is no shield).
See also: [invulnerable](#invulnerable).
#### invincible
`invincible`: boolean.
Used to make the player invincible. Defaults to `false`.
#### turbo
`turbo`: boolean.
Turbocharged mode (increases player speed). Defaults to `false`.
#### frozen
`frozen`: boolean.
Disable/enable player movement. Defaults to `false`.
#### aggressive
`aggressive`: boolean.
If set to `true`, the [attacking](#attacking) flag will be `true` regardless of the state of the player. The player will be able to hit the baddies just by touching them. Defaults to `false`.
See also: [attacking](#attacking), [inoffensive](#inoffensive).
*Available since:* Open Surge 0.5.1
#### inoffensive
`inoffensive`: boolean.
If set to `true`, the [attacking](#attacking) flag will be `false` regardless of the state of the player. The player will be vulnerable to damage even if jumping, rolling or charging. Defaults to `false`.
*Note:* if the player is simultaneously [aggressive](#aggressive) and inoffensive, the aggressive behavior prevails.
See also: [attacking](#attacking), [aggressive](#aggressive).
*Available since:* Open Surge 0.6.1
#### invulnerable
`invulnerable`: boolean.
If set to `true`, the player will be invulnerable to damage. It's like having an invisible shield that is permanent. The player may still be killed if crushed, by falling into a pit, by drowning, or by calling [kill](#kill).
*Available since:* Open Surge 0.6.1
#### immortal
`immortal`: boolean.
If an immortal player appears to be killed, it will appear to be ressurrected on its spawn point without losing a [life](#lives).
See also: [lives](#lives).
*Available since:* Open Surge 0.6.1
#### secondary
`secondary`: boolean.
A secondary player plays a secondary role and interacts with items in different ways. It cannot smash item boxes, activate goal signs, etc. This flag is best used with AI-controlled players. Defaults to `false`.
*Available since:* Open Surge 0.6.1
#### focusable
`focusable`: boolean.
A focusable player can receive focus. Defaults to `true`.
See also: [focus](#focus), [hasFocus](#hasfocus), [Player.active](#playeractive).
*Available since:* Open Surge 0.6.1
*Note:* if only a single player exists in the level, then that player will have focus regardless of the value of this flag.
#### breathTime
`breathTime`: number.
The maximum number of seconds the player can remain underwater without breathing.
See also: [underwater](#underwater), [secondsToDrown](#secondstodrown).
#### forciblyUnderwater
`forciblyUnderwater`: boolean.
If set to `true`, the [underwater](#underwater) flag will be true regardless of the [water level](/engine/level#waterlevel). If set to `false`, the underwater flag will be true only if the player is below the water level. Defaults to `false`.
See also: [underwater](#underwater), [waterlevel](/engine/level#waterlevel), [forciblyOutOfWater](#forciblyoutofwater).
*Available since:* Open Surge 0.6.1
#### forciblyOutOfWater
If set to `true`, the [underwater](#underwater) mechanics will be disabled, even if the player is below the [water level](/engine/level#waterlevel). If [forciblyUnderwater](#forciblyunderwater) is also `true`, this flag will do nothing. Defaults to `false`.
See also: [underwater](#underwater), [waterlevel](/engine/level#waterlevel), [forciblyUnderwater](#forciblyUnderwater).
*Available since:* Open Surge 0.6.1
#### layer
`layer`: string.
The current layer of the player. One of the following: *"green"*, *"yellow"*, *"default"*. This property tells you which bricks will be sensed, depending on their layer.
#### visible
`visible`: boolean.
Should the player sprite be rendered? Defaults to `true`.
#### collectibles
`collectibles`: number.
The number of collectibles, an integer shared between all player objects.
#### lives
`lives`: number.
The number of lives, an integer shared between all player objects.
#### score
`score`: number.
The score of the player, an integer value shared between all player objects.
#### speed
`speed`: number.
The speed of the player, in pixels per second. This will be mapped automatically to [gsp](#gsp) or [xsp](#xsp), depending on whether the player is touching the ground or not.
See also: [gsp](#gsp), [xsp](#xsp).
#### gsp
`gsp`: number.
Ground speed, in pixels per second. Prefer using [speed](#speed) instead, since `gsp` is only meaningful if the player is touching the ground.
See also: [speed](#speed).
#### xsp
`xsp`: number.
Horizontal speed, in pixels per second (useful while midair). Prefer using [speed](#speed) instead.
See also: [speed](#speed).
#### ysp
`ysp`: number.
Vertical speed, in pixels per second.
#### angle
`angle`: number.
The angle of the player, in degrees. The same as `transform.angle`.
See also: [slope](#slope), [transform](#transform).
#### slope
`slope`: number, read-only.
The angle detected by the physics system, in degrees. Unlike [angle](#angle), slope is read-only and does not feature any smoothing for visual aesthetics. Its purpose is to be a helper for physics calculations.
See also: [angle](#angle).
*Available since:* Open Surge 0.5.2
#### width
`width`: number, read-only.
The width of the player sprite, in pixels.
See also: [height](#height).
#### height
`height`: number, read-only.
The height of the player sprite, in pixels.
See also: [width](#width).
#### hflip
`hflip`: boolean.
Used to horizontally flip the sprite of the player relative to its [direction](#direction). Defaults to `false`. Changing this flag does not change the direction of the player in any way. It only changes the way the sprite is rendered. Also, reading this flag alone does not tell you whether the sprite is facing left or right. Use it in addition to the direction of the player for that.
See also: [direction](#direction), [vflip](#vflip).
*Available since:* Open Surge 0.6.1
*Example*
```cs
// make the sprite appear in accordance with player.direction
player.hflip = false;
// make the sprite appear flipped relative to player.direction
player.hflip = true;
// make the sprite appear facing right, regardless of player.direction
player.hflip = (player.direction < 0);
// make the sprite appear facing left, regardless of player.direction
player.hflip = (player.direction > 0);
// spriteDirection is analogous to player.direction
spriteDirection = player.direction * (player.hflip ? -1 : 1);
// let's check if the sprite is facing right or left
isFacingRight = (spriteDirection > 0);
isFacingLeft = (spriteDirection < 0);
```
#### vflip
`vflip`: boolean.
Used to vertically flip the sprite of the player. Defaults to `false`.
See also: [hflip](#hflip).
*Available since:* Open Surge 0.6.1
Functions
---------
#### bounce
`bounce(hazard | null)`
Makes the player bounce after smashing a hazard. The trajectory of the movement will be computed according to the position of the hazard. If no hazard is present, you may pass `null` as the argument.
*Arguments*
* `hazard`: [Actor](/engine/actor) object. The hazard.
*Example*
```cs
using SurgeEngine.Player;
using SurgeEngine.Actor;
using SurgeEngine.Collisions.CollisionBox;
object "Shield Box" is "entity"
{
actor = Actor("Shield Box");
shieldCollider = CollisionBox(32,32);
state "main"
{
player = Player.active;
if(player.attacking) {
if(player.collider.collidesWith(shieldCollider)) {
if(player.midair)
player.bounce(actor);
player.shield = "fire";
destroy();
}
}
}
}
```
#### bounceBack
`bounceBack(hazard)`
Makes the player bounce after smashing a hazard. If the player comes at the hazard from below, the player is thrown downwards. If not, the player is thrown upwards. The `hazard` parameter is mandatory.
*Arguments*
* `hazard`: [Actor](/engine/actor) object. The hazard.
#### getHit
`getHit(hazard | null)`
Makes the player get hit. Call it whenever the player gets hit by a hazard. The hit movement will be calculated according to the position of the hazard. If no hazard is present, you may pass `null` as the argument.
*Arguments*
* `hazard`: [Actor](/engine/actor) object. The hazard.
See also: [hit](#hit).
#### kill
`kill()`
Kills the player.
#### breathe
`breathe()`
Makes the player breathe (underwater only).
#### restore
`restore()`
Restores the player to a vulnerable state.
*Available since:* Open Surge 0.6.1
#### springify
`springify()`
Activates the "springing" activity.
See also: [restore](#restore).
#### roll
`roll()`
Makes the player roll.
#### hlock
`hlock(seconds)`
Locks the horizontal controls of the player for the specified time. Left and right input will be ignored during that time.
See also: [hlockTime](#hlocktime).
*Arguments*
* `seconds`: number. How long the horizontal controls of the player will stay locked? This usually should be set to a value no higher than `0.5`.
*Note:* since Open Surge 0.6.1, the locking will not take place if the player is midair.
#### focus
`focus()`
Focuses on the player. The focused player is controlled by the user. Only one player has focus at any given time.
See also: [hasFocus](#hasfocus), [focusable](#focusable), [Player.active](#playeractive).
*Returns*
Returns `true` on success, `false` otherwise.
#### hasFocus
`hasFocus()`
Does the player have focus?
See also: [focus](#focus), [focusable](#focusable), [Player.active](#playeractive).
*Returns*
Returns `true` if the player has focus, `false` otherwise.
#### moveBy
`moveBy(dx, dy)`
Moves the player by a (`dx`,`dy`) offset after the physics update of the current framestep. This is similar to calling `player.transform.translateBy(dx, dy)` in `lateUpdate()`.
See also: [lateUpdate](/engine/entity#lateupdate), [translateBy](/engine/transform#translateby).
*Available since:* Open Surge 0.6.1
*Arguments*
* `dx`: number. Horizontal offset in pixels.
* `dy`: number. Vertical offset in pixels.
*Example*
```cs
// Let's compare player.moveBy() to
// player.transform.translateBy()
dx = 5;
dy = 0;
// this moves the player AFTER the physics update
player.moveBy(dx, dy);
// this moves the player BEFORE the physics update
// (immediately), unless you call it in lateUpdate()
player.transform.translateBy(dx, dy);
```
#### move
`move(offset)`
Moves the player by the given `offset` after the physics update of the current framestep. Calling `player.move(offset)` is equivalent to calling `player.moveBy(offset.x, offset.y)`.
See also: [moveBy](#moveby).
*Available since:* Open Surge 0.6.1
*Arguments*
* `offset`: [Vector2](/engine/vector2) object. Offset vector.
#### transformInto
`player.transformInto(characterName)`
Transforms the player into the character named `characterName`. The transformation succeeds only if there is such a character.
*Available since:* Open Surge 0.6.1
*Arguments*
* `characterName`: string. The name of a character, as defined in a .chr file.
*Returns*
Returns `true` if the transformation is successful. Transforming a player into itself is considered successful, but nothing happens in this case.
```cs
// this player will become Surge
player.transformInto("Surge");
// this player will become Tux
player.transformInto("Tux");
// the following transformation will fail:
if(!player.transformInto("non-existent-character"))
Console.print("No transformation took place!");
// After a successful transformation:
// - player.name will change;
// - player.id will not change!
```
|