| 12345678910111213141516171819202122232425262728293031323334 |
- using Ryujinx.HLE.HOS.Tamper.Conditions;
- using System.Collections.Generic;
- namespace Ryujinx.HLE.HOS.Tamper.Operations
- {
- class IfBlock : IOperation
- {
- private ICondition _condition;
- private IEnumerable<IOperation> _operationsThen;
- private IEnumerable<IOperation> _operationsElse;
- public IfBlock(ICondition condition, IEnumerable<IOperation> operationsThen, IEnumerable<IOperation> operationsElse)
- {
- _condition = condition;
- _operationsThen = operationsThen;
- _operationsElse = operationsElse;
- }
- public void Execute()
- {
- IEnumerable<IOperation> operations = _condition.Evaluate() ? _operationsThen : _operationsElse;
- if (operations == null)
- {
- return;
- }
- foreach (IOperation op in operations)
- {
- op.Execute();
- }
- }
- }
- }
|