Raised This Month: $32 Target: $400
 8% 

Module: OO (Simulating OOP in AMXXPAWN language)


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
11922911
Senior Member
Join Date: Dec 2011
Location: Yuen Long Country
Old 09-03-2023 , 00:47   Module: OO (Simulating OOP in AMXXPAWN language)
Reply With Quote #1

Introduction
OO is an amxx module for the amxxpawn language that can implement the basic features of object-oriented programming,
such as classes, objects, inheritance, etc.
It uses some special syntax and functions to simulate the concepts of object-oriented programming,
allowing developers to write amxxpawn code in a more concise and flexible way.

Requirements
  • AMXX 1.83+

Installation and usage
To use the this module, you need the following steps:
  • Download the binary and the scripting.zip of the OO module, or you can compile it on your own.
    Source Code: https://github.com/hollacs/oo_amxx/tree/no-std
    Release Files: https://github.com/hollacs/oo_amxx/releases
  • Put the binary files of the OO module to the addons/amxmodx/modules
  • Extract the scripting.zip files to the addons/amxmodx/scripting
    the scripting files contain an example plugin that named 'oo_animal.sma'
  • Include the oo.inc in your plugin, and use it.

Example Code:
PHP Code:
#include <amxmodx>
#include <oo>

#define main plugin_init

public oo_init()
{
    
// A base class for all animals
    
oo_class("Animal")
    {
        new 
cl[] = "Animal";

        
oo_var(cl"age"1); // A attribute that stores the age of the animal
        
oo_var(cl"name"32); // A attribute that stores the name of the animal

        // A constructor that takes the name and the age of the animal
        
oo_ctor(cl"Ctor", @str{name}, @int{age});

        
// A destructor of the animal
        
oo_dtor(cl"Dtor");

        
// A function that returns the sound of the animal
        
oo_mthd(cl"MakeSound", @stref{msg}, @int{len});

        
// A function that returns the number of legs of the animal
        
oo_mthd(cl"GetLegs");

        
// A function that prints the name and sound of the animal
        
oo_mthd(cl"Introduce");

        
oo_smthd(cl"Test"); // static method test
    
}

    
// A derived class for dogs that inherits from Animal
    
oo_class("Dog""Animal")
    {
        new 
cl[] = "Dog";

        
// A constructor that calls the base class constructor with the name "Dog"
        
oo_ctor(cl"Ctor", @int{age});

        
// An override function that returns the sound of a dog
        
oo_mthd(cl"MakeSound", @stref{msg}, @int{len});

        
// An override function that returns the number of legs of a dog
        
oo_mthd(cl"GetLegs");
    }

    
// A derived class for cats that inherits from Animal
    
oo_class("Cat""Animal")
    {
        new 
cl[] = "Cat";

        
// A constructor that calls the base class constructor with the name "Cat"
        
oo_ctor(cl"Ctor", @int{age});

        
// An override function that returns the sound of a cat
        
oo_mthd(cl"MakeSound", @stref{msg}, @int{len});

        
// An override function that returns the number of legs of a cat
        
oo_mthd(cl"GetLegs");
    }

    
// A derived class for birds that inherits from Animal
    
oo_class("Bird""Animal")
    {
        new 
cl[] = "Bird";

        
// A constructor that calls the base class constructor with the name "Bird"
        
oo_ctor(cl"Ctor", @int{age});

        
// An override function that returns the sound of a bird
        
oo_mthd(cl"MakeSound", @stref{msg}, @int{len});

        
// An override function that returns the number of legs of a bird
        
oo_mthd(cl"GetLegs");
    }

    
// A derived class for snakes that inherits from Animal
    
oo_class("Snake""Animal")
    {
        new 
cl[] = "Snake";

        
// A constructor that calls the base class constructor with the name "Snake"
        
oo_ctor(cl"Ctor", @int{age});

        
// An override function that returns the sound of a snake
        
oo_mthd(cl"MakeSound", @stref{msg}, @int{len});

        
// An override function that returns the number of legs of a snake
        
oo_mthd(cl"GetLegs");
    }
}

// A constructor of Animal
public Animal@Ctor(const name[], age)
{
    new 
this oo_this(); // Get this object hash
    
oo_set_str(this"name"name); // Assign string value to the member variable of "name"
    
oo_set(this"age"age); // Assign integer value to the member variable of "age"
}

// A destructor of Animal
public Animal@Dtor()
{
    new 
name[32];
    
oo_get_str(oo_this(), "name"name32); // Get string value from the member variable of "name"
    
server_print("%s has been euthanized."name);
}

public 
Animal@MakeSound(msg[], len)
{
    
// format the message to the msg[]
    
formatex(msglen"I am an animal");
}

public 
Animal@GetLegs()
{
    return 
0;
}

public 
Animal@Introduce()
{
    new 
this oo_this();

    new 
name[32];
    
oo_get_str(this"name"name32);

    new 
age oo_get(this"age"); // Get integer value from the member variable of "age"

    
new legs oo_call(this"GetLegs");

    
// Call "MakeSound" function of this animal and retrieve the result to the msg[]
    
new msg[64];
    
oo_call(this"MakeSound"msgcharsmax(msg));

    
// Print the introduction
    
server_print("Hello, my name is %s, I'm %d years old, I have %d legs, and I say %s"nameagelegsmsg);
}

public 
Animal@Test() { server_print("static method test"); }

public 
Dog@Ctor(age)
{
    
// Call the parent constructor of this dog
    
oo_super_ctor("Animal""Dog"age);
}

public 
Dog@MakeSound(msg[], len)
{
    
formatex(msglen"Woof woof");
}

public 
Dog@GetLegs()
{
    return 
4;
}

public 
Cat@Ctor(age)
{
    
oo_super_ctor("Animal""Cat"age);
}

public 
Cat@MakeSound(msg[], len)
{
    
formatex(msglen"Meow meow");
}

public 
Cat@GetLegs()
{
    return 
4;
}

public 
Bird@Ctor(age)
{
    
oo_super_ctor("Animal""Bird"age);
}

public 
Bird@MakeSound(msg[], len)
{
    
formatex(msglen"Tweet tweet");
}

public 
Bird@GetLegs()
{
    return 
2;
}

public 
Snake@Ctor(age)
{
    
oo_super_ctor("Animal""Snake"age);
}

public 
Snake@MakeSound(msg[], len)
{
    
formatex(msglen"Sss sss");
}

public 
Snake@GetLegs()
{
    return 
0;
}

public 
main()
{
    
register_plugin("[OO] Animal""0.1""holla");

    new 
Animal:animals[5];
    
animals[0] = oo_new("Dog"7);
    
animals[1] = oo_new("Cat"6);
    
animals[2] = oo_new("Bird"4);
    
animals[3] = oo_new("Snake"3);
    
animals[4] = oo_new("Animal""Unknown"0);

    for (new 
05i++)
    {
        
oo_call(animals[i], "Introduce"); // Call Introduce function for each animals
    
}

    
// Tests
    
oo_call(0"Animal@Test"); // Test calling the static method

    
server_print("Object #%d %s a Snake"animals[3], oo_isa(animals[3], "Snake") ? "IS" "IS NOT");
    
server_print("Object #%d %s a Dog"animals[3], oo_isa(animals[3], "Dog") ? "IS" "IS NOT");

    
server_print("Class Dog %s a subclass of Animal"oo_subclass_of("Dog""Animal") ? "IS" "IS NOT");
    
server_print("Class Animal %s a subclass of Cat"oo_subclass_of("Animal""Cat") ? "IS" "IS NOT");

    
server_print("Class Bird %s exists"oo_class_exists("Bird") ? "IS" "IS NOT");
    
server_print("Class Fish %s exists"oo_class_exists("Fish") ? "IS" "IS NOT");

    new class[
32];
    
oo_get_classname(animals[0], class, charsmax(class));
    
server_print("Object #%d's classname is %s"animals[0], class);

    
server_print("Object #%d %s exists"animals[0], oo_object_exists(animals[0]) ? "IS" "IS NOT");

    for (new 
05i++)
    {
        
oo_delete(animals[i]); // Delete each animal objects
    
}

    
server_print("Object #%d %s exists"animals[0], oo_object_exists(animals[0]) ? "IS" "IS NOT");

Outputs:
Code:
Hello, my name is Dog, I'm 7 years old, I have 4 legs, and I say Woof woof
Hello, my name is Cat, I'm 6 years old, I have 4 legs, and I say Meow meow
Hello, my name is Bird, I'm 4 years old, I have 2 legs, and I say Tweet tweet
Hello, my name is Snake, I'm 3 years old, I have 0 legs, and I say Sss sss
Hello, my name is Unknown, I'm 0 years old, I have 0 legs, and I say I am an animal
static method test
Object #2102251586 IS a Snake
Object #2102251586 IS NOT a Dog
Class Dog IS a subclass of Animal
Class Animal IS NOT a subclass of Cat
Class Bird IS exists
Class Fish IS NOT exists
Object #16934577's classname is Dog
Object #16934577 IS exists
Dog has been euthanized.
Cat has been euthanized.
Bird has been euthanized.
Snake has been euthanized.
Unknown has been euthanized.
Object #16934577 IS NOT exists
NOTE: All class have to declared in the public function of oo_init()
__________________
youtube:
@holla16

Last edited by 11922911; 04-02-2024 at 09:34.
11922911 is offline
Roccoxx
AlliedModders Donor
Join Date: Jan 2012
Location: Argentina
Old 09-25-2023 , 15:04   Re: Module: OO (Simulating OOP in AMXXPAWN language)
Reply With Quote #2

Interesting. Good Job!
__________________
Tutorials here (Spanish)

Like as another Pijudo said: "Tired and retired"
Roccoxx is offline
Send a message via MSN to Roccoxx
lexzor
Veteran Member
Join Date: Nov 2020
Old 10-02-2023 , 03:53   Re: Module: OO (Simulating OOP in AMXXPAWN language)
Reply With Quote #3

nice, thanks for sharing
lexzor is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 16:46.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode