Undo and Redo with the Command Pattern - C# and Unity

preview_player
Показать описание
The command pattern encapsulates commands from the systems that execute or undo those commands. This is useful in asynchronous applications and is useful to create undo and redo functionality.

0:00 Intro
2:25 ICommand Interface
3:00 Move Command
4:00 Turn-Based Input Manager
5:06 Turn-Based Character Controller
6:00 Undo System
7:28 Redo System
9:15 Command Handler
10:43 Final Thoughts
11:23 THE END

#Programming Patterns #CommandPattern #GameDevelopment #cleancode #unity3d
Рекомендации по теме
Комментарии
Автор

great video, clear and well explained.

In general though I would personal favour a "stack" instead of a list as by design you can push and pop the commands onto the undo redo stacks and avoid having to maintain indexes etc. Also while I 100% agree on encapsulating a commandhandler/manager It is still ill advised to expose that implementation detail out of the character. If a character can undo/redo his movement it shouldn't matter how that happens, if it is delegating or not, so to avoid Law of Demeter violations I would keep the Undo/Redo calls on the Character and internally delegate them to my handler `public void Undo => commands.Undo() ` etc.

JasonStorey
Автор

Love your style of teaching, you earned my sub, sir! You mentioned behaviour trees in the state pattern video and I'd be delighted if you made a video about that topic.

milhouse
Автор

Good tutorial. I would like to mention, that I prefer to use Stack in such case. More flexible and code looks more elegant. Thx for sharing such great explanation of this pattern.

zebgagang
Автор

I never though about using object pooling for the commands! what an intelligent idea

ricniclas
Автор

this channel is really awesome. Thanks for another great video!

THEspindoctor
Автор

I would have created a new list for redos that got cleared if you enter a new command. Undo removes a command from the list and adds it to the redo list. Redoing removes it from the redo list and puts it back into the main command list.

justinwhite
Автор

Is there another pattern you'd like to see covered? Which one?

OneWheelStudio
Автор

thanks for sharing your knowledge! +1 sub, greetings from Bolivia

amilkarmassy
Автор

great video for explanation! i solved my solution after 5 minute watch your video!

ardhenismuhammadaflah
Автор

Why doesn't this guy have more subscribers? Goldmine, thanks

EternalStudnt
Автор

I think adding the undo command to the list is better done after execute. If execute fails, and you want to run the undo, the last one failed, and the undo will fail.

marcohuiberts
Автор

What I can't quite understand is how all this abstraction actually helps with the logic? Can't you just have the list of commands directly in the code instead? Why do I need a middleman?

spiralhero
Автор

I've watched the observer pattern video dozens of times and have fully integrated the pattern into my own project. Although I understand not wanting to deviate from a 'pure' command pattern, I think it would be far more useful to show the command pattern together with the observer pattern. I won't have any trouble converting it over when I'm implementing it myself, but people new to observer might have trouble. Perhaps you could make a new video, something along the lines of 'Integrating observer and command patterns', which could cover this topic.

richardrothkugel
Автор

I can see this being used in tutorials for any game, where you want to progress through particular moves and allow the player to go back to a previous step.

Would this be overkill for that or is this exactly what you'd use?

JulesCalella
Автор

Hey, thank you for your tutorials. Do you think it would be possible to make a tutorial on aligning an moving object with uneven terrain, especially its rotation? For example if my cube goes up a slope it should rotate to match the slope angle. Its the rotation part to align it with the terrain that I don´t understand how to do in bolt. That would be such a great help and there are no other bolt tutorials that tackle that topic.

MrZerocool
Автор

Im still cant understand the difference between this one to memento undo redo

BunnyHuggerr
Автор

I guess, we can use two stacks for undo and redo

muhammetuymaz
Автор

pks make more design pattern tutorials.

MohitBanke-dm