As of late 2021, we are in the process of updating Stencylpedia and fixing up outdated & broken content. Thanks for your patience!

88,789

Views

Intermediate

Level

25

Comments

Lists

by Jon (Updated on 2015-10-18)


Contents

  • What are Lists? What are Lists useful for?
  • List Structure
  • Gotchas
  • List Operations
  • How to Create Lists
  • Lists as Game Attributes
  • Challenge: 2D Lists

What are Lists?

If you've ever written a grocery list, you're prepared to use lists in Stencyl.

  • Eggs
  • Broccoli
  • Bacon
  • Salmon
  • Corn Flakes
  • Gallon of Water

As you'd expect, lists are best used to store collections of things. You can use lists for things like:

  • Inventory
  • Character stats
  • Status effects
  • Selecting random monsters to spawn

In general, lists can be a good option any time you want to keep track of lots of information.

Aside: Internally Stencyl uses lists to keep track of created actors, what points in a collision actually collided, and so on. If you've used any block that begins with "for each" you've actually used a list already!


For Programmers: Lists are mutable lists. They are equivalent ArrayLists, Vectors, NSMutableArray or whatever you like to call them.

List Structure

A list is an ordered collection of items. Each item in a list is made up of two parts:

  1. A numerical index - in other words, where an item resides
  2. A value

Think of a list as a 2-column table.

The first column is the index. The second column is the value.

index value
0 eggs
1 bacon
2 cheese
3 apples
4 oranges
5 salmon

List Gotchas

  • Indexes for lists start at 0, so the first item in a list starts at index 0, the second item is listed at index 1, and so forth.

  • Don't work with indices beyond the maximum one (or below 0). Your game will crash if you do.

  • Lists don't necesarily have to contain data all of the same type, but it is common practice to do so. If you mix up data types, it's your responsibility to keep track of this and process your data appropriately.

List Operations

All blocks related to lists are located under Attributes > Lists.

Operations

  • Add [ELEMENT] to [LIST]
  • Insert [ELEMENT] at [INDEX] to [LIST]
  • Replace item at [INDEX] with [ELEMENT] for [LIST]
  • Remove [ELEMENT] from [LIST]
  • Remove element at [INDEX] from [LIST]
  • Remove all elements from [LIST]

Getters

  • Get item at [INDEX] from [LIST]
  • [LIST] contains [ELEMENT]
  • Number of items in [LIST]
  • [LIST] is empty?

Creators

  • Create new list
  • Create (shallow) copy of [LIST]

The Future: We don't yet support reversing, combining or sorting lists, though these are all supported in a 3rd party extension. We do, however, support Maps/Dictionaries.

How to Create Lists

How do you create a List in the first place? Lists can be Attributes, so like any attribute, there are two ways of doing this.

  1. Configuring the attribute with initial data.
  2. Creating it at runtime inside a behavior and setting the attribute's value to that new list.

Assume that for both cases, we have created a List Attribute called "myList"

Method 1: Configuring a List Attribute

After attaching a behavior with a List attribute to either an Actor or a Scene, you'll see this neat interface for adding initial data to the list.

Note: The second icon (the one under the +) lets you import a List from a text file. One line per entry. All entries will be treated as text.

Method 2: Creating it on the Fly

Alternatively, you can create a new list on the fly and begin filling it up.

Lists as Game Attributes

Lists can be used as Game Attributes. This can be pretty useful for defining stat tables and other large collections of data to use throughout the game.

Creating a List as a Game Attribute

Lists can be created as Game Attributes and pre-populated the same way as other lists, namely only with Numbers and Text.

Note: You are also allowed to dump in Lists into Lists at runtime as well as any other kind of data. If you plan to save your lists out (via Game Attributes), there are restrictions. Skip down to "Saving & Lists"

Setting the Value of a Game Attribute to a List

It should come as no surprise that you're able to set the value of a Game Attribute to a List.

Note: Assigning values simply gets the Game Attribute to "point" to your List. No copying is done, so modifying it modifies the one and only "copy" of that list.

Saving & Lists

As stated earlier, be careful when saving out lists as Game Attributes. They can only contain contain Numbers, Text and other Lists that follow the same rules.

Summary

  • Lists are collections of data.
  • Every item in a list has an index (number) that tells you where, in that list, that item resides.
  • Indices start from 0.
  • You can do lots of things to lists and change them after creation.

Challenge: Two-Dimensional Lists

Lists are great for storing sequential information, but if you need to store a "grid" of data? It turns out that lists are powerful enough that you store a List within a List, thereby bringing it up to 2 dimensions.

Come up with a scenario in which you need a 2D list and implement it.

Disclaimer: This challenge is just an exercise for practicing what you've learned. Part of what we're doing with Stencylpedia is getting you to think about the underlying concepts. Please do not regard this as best practice - it's just an exercise.

Looking for a 2D list extension?

A veteran Stencyler has created a handy extension for 2D lists.

Print Article Edit Article How to Edit an Article
Disclaimer: Use comments to provide feedback and point out issues with the article (typo, wrong info, etc.). If you're seeking help for your game, please ask a question on the forums. Thanks!

25 Comments

Corerupted
Is it possible to maybe make a Guide to clearly explain how to do string handling? for example in my rpg game i got a weapon stats list which contains values seperated by "," (no spaces) and each line represents a weapon.
The format of the weapon list:
Weapon Name, Slot Number

The format of the stats list
Str, Dex, Int, Vit, Luck

(No spaces)

What would be the best way to retrieve all the stats effectively for my weapon?

0 11 years, 7 months ago
MikeyPB
List Gotcha!

I've been trying to figure out why my list didn't work on iOS. I was sending and retrieving actor names as text to a global list, using the blue tags on the collision events blocks.

This worked in flash, but the name of the actor in iOS is "Actor: actor type". I was trying to compare actors to the list using the first letter of the actor type and was confused why everything was coming back as "A"!

Hope this info helps someone with the same problem.

0 12 years, 3 weeks ago
HannesRoets
What would the result of the 2d list be? Could you add a table to clarify ?
0 12 years, 5 months ago
SherwoodSoftware
There needs to be an example about looping through a list. Especially with "for each" flow icon in Attributes->List
0 12 years, 7 months ago
Satori
Lists can contain Text or Numbers, but Lists on their own don't do very much. Their major value is that they work with other aspects of Stencyl. Information, then, on how to actually use the content of a List with the other parts of Stencyl would be valuable. A common use case would be a List called InventoryItems. How would you use Text or Numbers successfully to refer to other Actors? You'd want to destroy an Actor (an inventory item) upon adding it to the List (picking it up), and recreate an instance of it upon removal (dropping it). But there's nothing here that tells me how to do that with Numbers or Text.
1 12 years, 9 months ago
72master
so different question could somebody explain in more detail how to add things to your list on the fly because that would be really helpfull
0 12 years, 10 months ago
72master
does anybody know where i could find a tutorial on making random text out of a list . for example i have made a list and set it so that when the main charc collides with another actor the actor produces all the text from the list over and over and over again so anybody feel like helping me out ? :)
0 12 years, 10 months ago
SpanishStencylers
@CapitainKing
The rest of the list fill the gap, I think

0 12 years, 10 months ago
CaptainKing
If I delete an item in the list, lets say item #3. Does item #3 stay empty or does the rest of the list fill in the gap?
0 12 years, 10 months ago
Jon
I've heavily reworked the article to meet our new quality standards for Stencylpedia 2.0 and included most/all of the info that was asked for in these comments and elsewhere.
0 13 years, 1 month ago

Sign In to Comment