Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
import types, inspect try: import samp except ImportError: pass t_unauthorized='You are not allowed to use this command' t_unauthd_color=0xFF1111FF _cmd_list = dict() current_cmd = None def cmd(command, raw=False, requires=None, convert=None, unauthorized_text=t_unauthorized, unauthd_color=t_unauthd_color): """function decorator for command functions Arguments: function: Command name as a string or a tuple of multiple aliases If there is no command name passed, the command's name will be the function's name raw: whether the cmdtext should be passed as the raw string (True) or parsed as a whitespace-seperated tuple requires: function object or a tuple with multiple function objects, which are called with a playerid and should return True if the player is allowed to use that command convert: contains a dictionary of callable objects, that take a string and return any other type, which is called for the given command parameter, for example the following will parse prm1 as int: @cmd("test", convert=dict(prm1=int)) def cmd_test(playerid, prm1): pass unauthorized_text: a string which is sent to the player, if he/she/it is not allowed to use the command (see requires) unauthd_color: a color code which is used for sending the unauthorized message Example usages: >>> @cmd ... def testcmd(playerid, arg1): ... pass >>> @cmd("testcmd", requires=samp.IsPlayerAdmin) ... def cmd_test(playerid, arg1): ... pass """ ret_obj = True # get command names cmd_names = [] if type(command) == str: cmd_names.append(command) # directly add this string as the name elif hasattr(command, '__iter__'): cmd_names.extend(command) # extend the list with the iterable object elif hasattr(command, '__call__'): # in that case we (should) have a decorator @cmd, where the function object is passed here cmd_names.append(command.func_name) ret_obj = False # in that case we don't have to return the cmd_obj instance else: # invalid parameter raise TypeError('invalid type: command') inst = _cmd_obj(cmd_names, raw, requires, convert, unauthorized_text, unauthd_color) if not ret_obj: # set function in inst and return command inst.function = command inst.read_function_data() return command return inst class _cmd_obj(object): def __init__(self, aliases, raw, requires, convert, unauthorized_text, unauthd_color): # we always have a list of command names in aliases # iterate through all strings and add the commands for alias in aliases: _cmd_list[(alias if alias[0] != '/' else alias[1:])] = self # strip leading slash if there is one self.function = None self.raw = raw self.requires = requires if hasattr(requires, '__iter__') else (requires,) self.convert = convert if type(convert) == dict else dict() self.unauthorized_text = unauthorized_text self.unauthd_color = unauthd_color def __call__(self, funcobj): if self.function == None: # in this case, we have a @cmd(...) decorator -> the function object is passed here self.function = funcobj self.read_function_data() return funcobj def read_function_data(self): """ reads parameter count and type of the function parameters """ args = None # read parameter info, depending on what callable type it is if type(self.function) == types.FunctionType: args = inspect.getargspec(self.function) else: args = inspect.getargspec(self.function.__call__) # check if there is a self parameter try: args.args.remove('self') except ValueError: pass # set parameter count if args.varargs != None:# or args.keywords != None: # keyword arguments wouldn't make any sense here # unlimited parameter count self.param_count = -1 else: self.param_count = len(args.args) - 1 # save the argument names for the convert parameter self.args = args.args def handle_command(playerid, cmdtext): """This function handles a command sent by a player and has to be called in OnPlayerCommandText >>> @cmd ... def test(pid, prm1, prm2): ... print('called') >>> @cmd("t2", convert=dict(prm1=int)) ... def t2(pid, prm1): ... print(type(prm1)) >>> handle_command(0, "/test prm1 prm2") called True >>> handle_command(0, "/t2 5") <type 'int'> True >>> handle_command(1, "/nocmd") False """ # split cmdtext prt = cmdtext.split() cmdname = prt[0][1:] # find the cmd instance if not cmdname in _cmd_list: return False # command does not exist cmd = _cmd_list[cmdname] if cmd.function == None: raise AttributeError("command has no callable object assigned: [%d]: %s" % (playerid, cmdtext)) # check if this user is authorized to use this command for req in cmd.requires: try: if not req(playerid): # it's the user's fault if he doesn't pass callable objects samp.SendClientMessage(playerid, cmd.unauthd_color, cmd.unauthorized_text) return True except TypeError: pass if cmd.param_count != -1 and len(prt) - 1 > cmd.param_count: # too many parameters passed -> cut out prt = prt[:-(len(prt) - cmd.param_count - 1)] # convert parameters for p in xrange(len(prt)): if cmd.args[p] in cmd.convert: # check if this parameter exists try: # call the converter prt[p] = cmd.convert[cmd.args[p]](prt[p]) except: pass # we don't know which exceptions are thrown if conversion fails, so always drop it # call the function object cmd.function(playerid, *prt[1:] if not cmd.raw else cmdtext) return True # doctest if __name__ == "__main__": # mock for samp module with needed functions for doctests class samp(object): @staticmethod def IsPlayerAdmin(playerid): return True if playerid % 2 else False @staticmethod def SendClientMessage(playerid, color, text): return None import doctest doctest.testmod()
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Exploit
PHP | 1 hour ago | 0.39 KB
FREE ETHEREUM METHOD
CSS | 1 hour ago | 0.39 KB
Free Crypto Method
C++ | 1 hour ago | 0.39 KB
Free Crypto Method
Puppet | 1 hour ago | 0.39 KB
Free Crypto Method
Lua | 1 hour ago | 0.39 KB
Guide
CSS | 1 hour ago | 0.38 KB
Amazon Product: 160GB MP3 Player with Bluetoo...
JSON | 2 hours ago | 9.16 KB
Untitled
JSON | 2 hours ago | 45.65 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!