 |
Server Help Community forums for Subgame, ASSS, and bots
|
Author |
Message |
-Smong- Guest
Offline
|
Posted: Tue Sep 28, 2004 4:53 pm Post subject: timers and per arena data with python |
 |
|
|
|
How do you do timers and perarena/player data with python?
Also I notice in the kill points example you posted you did:
from asss import *
How is this different from doing:
import asss
which I saw in the prizelist.py example.
One last thing, how do you find out what a target is, for example finding out if a command was sent privately or to the whole arena. |
|
Back to top |
|
 |
Grelminar Creator of Asss
Joined: Feb 26 2003 Posts: 378 Offline
|
Posted: Wed Sep 29, 2004 1:41 am Post subject: |
 |
|
|
|
First, the python docs for import. The basic difference is that "import asss" loads the asss module, and puts one entry in the current namespace, named "asss". The contents of the module are available through that entry, as in "asss.get_interface". "from asss import *" loads the module and puts all of the module's contents in the current namespace. So you can just use "get_interface". The first way is a little cleaner, and avoids namespace conflicts, the second is when you're being lazy.
Targets are converted to the most convient python object. If the command was sent as a pub message, the target will be the arena. If it was sent to a specific player, it will be a player. If it was a freq, it will be a (arena, freq) tuple. Now, that doesn't really help you, because all you have is an object, and you don't know what type it is. Python provides a built-in function "type" which will give you the type of an object. But that doesn't help very much either, because you have nothing to compare it to. And that's my fault. So I'm going to expose the Player and Arena types so that you can say "if type(target) == asss.PlayerType: ...". I'll probably even create functions is_player and is_arena, to wrap that logic.
There's currently no way to do timers in python. It should be easy to add; I'll do it soon.
Per-arena and per-player data is simple: just use fields of the player and arena objects. No allocation or registration required. Note that it's easy to get namespace collisions, so you might want to prefix your field names with your module name, or something similar. E.g., use "p.prizelist_prizes = ..." instead of "p.prizes = ..." |
|
Back to top |
|
 |
Grelminar Creator of Asss
Joined: Feb 26 2003 Posts: 378 Offline
|
|
Back to top |
|
 |
Smong Server Help Squatter

Joined: 1043048991 Posts: 0x91E Offline
|
|
Back to top |
|
 |
Grelminar Creator of Asss
Joined: Feb 26 2003 Posts: 378 Offline
|
|
Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You can attach files in this forum You can download files in this forum
|
Software by php BB © php BB Group Server Load: 90 page(s) served in previous 5 minutes.
|