euddraft icon indicating copy to clipboard operation
euddraft copied to clipboard

System for pluginizing eudplib codes.

Results 77 euddraft issues
Sort by recently updated
recently updated
newest added

# Issue CMakeList.txt in epscript doing test parser, and tokenizer via [catch.hpp](https://github.com/armoha/eudplib/blob/main/src/epscript/test/catch.hpp). But current version of catch(v2.0.1) is outdated causing `error: unrecognized instruction mnemonic, did you mean: bit, cnt, hint,...

Copied from SEN discord server (Nov 24, 2024) > **GGRush**: Hi Dr.zzt, I would greatly appreciate it if you could help me improve this code > If you could add...

enhancement

The flag seems to be flipped, by GGRush in Nov 11, 2024 (SEN discord): ![8084f5d89056679e8ad0722303931158](https://github.com/user-attachments/assets/df95d2a6-232e-4b48-8c55-c36fe7b59002) ![fb0e79f1d3aae1e89d1b21d8c85286f9](https://github.com/user-attachments/assets/ce0d8d48-ae19-479a-8283-365e706bc1eb) > Answer by **DarkenedFantasies**: `isBuilding` is a bad name. that status flag makes units...

bug
question

from StarEdit Network discord server (Oct 18, 2024) > **GGRush**: Hi Armo, may I ask you a question, what's difference between CUnit(epd) and CUnit(epd, ptr=ptr)? > If epd is enough...

enhancement

```js // unitType is TrgUnit const unitType = cunit.unitType; switch (unitType) { case TrgUnit("Terran Marine"): // do something break; } var player: TrgPlayer = P12; switch (player) { case P1:...

enhancement

```js // example code const unit = TrgUnit("Left Upper Level Door"); unit.availabilityFlags.SetDoodadState = false; // Syntax Error ``` Basic actions shouldn't be specialized in epScript parser and instead should be...

bug

Unlike `string.Formatter`, f-string feature is for building string literal and is not open to customize. So it's quite hard to provide string interpolation feature in eudplib with f-string interface, but...

enhancement