Hi,
First of all, thank you for providing that figure. It was quite helpful in describing your question. Second, unfortunately, the approach you have in mind is just not possible! Casting is only done on the inheritance chain. What you want is to be able to change the parent of a class during runtime which is just impossible! In the context of object-oriented modeling, once an object is initialized, you cannot change its type nor can you change its inner relation. However, this doesn’t mean that you cannot accomplish what you want. All you need is just a little bit of modification in your original diagram. In fact, what you want can be even done in a very clear, neat, and somewhat generic and reusable manner and for that, you need a few key features of object-oriented modeling, specifically inheritance and polymorphism. I have answered very similar questions in the past few days (link1, link2, link3, link4). I highly recommend that you take a look at them to better understand these concepts (you can even think of these questions as examples).
So how would you go about accomplishing this? You would at least need 4 blueprints: 2 for your base classes, and 2 for the children derived from them. They will have the following relationship
BaseWeapon ← Weapon_Type_01
BaseCharacter ← Character_Type_01
The ← sign here means that the operand on the right inherits from the operand on the left (e.g. Weapon_Type_01 inherits from BaseWeapon). I’m gonna stick with these names as they are more generic, though feel free to name your blueprints whatever that makes sense to you. I’m also only gonna focus on the two Base classes as their children can be as unique as you want and that’s not really of our concern here. Now, starting with the BaseWeapon, this blueprint would contain base variables and interfaces that are common to all your different types of weapons. You can simply create as many different weapons as you want from this. One interface function that this BaseWeapon probably needs to have is Fire(). Taking advantage of polymorphism, you would implement its common parts such as damaging the player in the BaseWeapon class and the unique part such as spawning a laser in its unique child. Any of your characters can simply call this Fire() method through BaseWeapon and it would automatically link to the appropriate weapon and fire it for you! Definitely refer to those link I provided to better understand how the polymorphism works. Similarly, create a BaseCharacter and base all your different types of characters on this.
Now comes the tricky part that you were doing wrong! Instead of trying to change inheritance relation of your classes, create a variable in your BaseCharacter and make it of type BaseWeapon. Let’s name it PickedWeapon. Now whenever your character picks any type of weapon that is based on BaseWeapon, you store it in this variable PickedWeapon. Think about this, what does a character need to know about a gun? -Probably the number of available bullets and magazine capacity. These can be public variables and you can have getters for them so your character can read them. What functions of it does a character need? -Just a fire button to press and fire that weapon (probably a reload function too)! A character doesn’t need to know how to process the bullets and fire them. It’s weapon’s responsibility! And that’s the beauty of object-oriented design! Whenever you want to fire, from within any of your unique characters, get this PickedWeapon variable that is inherited from BaseCharacter and call its function Fire(), which has its signature in BaseWeapon and its implementation in the unique children. The polymorphism will take care of it for you and link to the Fire method of the appropriate child weapon!
If you want to drop your weapon, call the drop function you have in your character, play the animation, and set this variable PickedWeapon to null (or None in blueprints terms).
There you go! A beautiful and generic system that would work with any weapon and any character you have that are based on these base classes.
Hope this helps
~Vizgin