idk why there are some un-commit work, but i commit them now

This commit is contained in:
yyc12345 2024-05-22 20:27:23 +08:00
parent a27b87af79
commit 656db23902
3 changed files with 8 additions and 8 deletions

View File

@ -11,9 +11,9 @@
| pLocal +--------------> | | pLocal +--------------> |
+--------------+ | | +--------------+ | |
| pIn (bb/oper) | | pIn (bb/oper) |
+--------------+ | | +----------------+ | |
| pIn (bb) +--------------> / | | pIn (bb/oper) +------------> / |
+--------------+ | | +----------------+ | |
| pTarget (bb) | | pTarget (bb) |
+----------------+ | | +----------------+ | |
| pOut (bb/oper) +------------> | | pOut (bb/oper) +------------> |
@ -22,9 +22,9 @@
+------------------+ +--------------+ +------------------+ +-----------------+
| +-----------> pOut (bb) | | +-----------> pOut (bb/oper) |
| | +--------------+ | | +-----------------+
| pOut (bb/oper) | | pOut (bb/oper) |
| | +--------------+ | | +--------------+
| +-----------> pLocal | | +-----------> pLocal |

View File

@ -82,7 +82,7 @@ class BlocksFactory(object):
# read datas # read datas
for (output_obj, output_type, output_is_bb, ) in envir.m_Cursor.fetchall(): for (output_obj, output_type, output_is_bb, ) in envir.m_Cursor.fetchall():
# check dup # check dup
if output_obj in envir.m_WalkedOper: if output_obj in envir.m_WalkedOper or output_obj not in self.__AllOper:
continue continue
envir.m_WalkedOper.add(output_obj) envir.m_WalkedOper.add(output_obj)

View File

@ -138,7 +138,7 @@ namespace SSMaterializer {
{ {
//pOper only have pIn. //pOper only have pIn.
mDb->mDbHelper.script_pLink.input_type = DataStruct::pLinkInputOutputType_PIN; mDb->mDbHelper.script_pLink.input_type = DataStruct::pLinkInputOutputType_PIN;
mDb->mDbHelper.script_pLink.input_is_bb = TRUE; mDb->mDbHelper.script_pLink.input_is_bb = FALSE;
mDb->mDbHelper.script_pLink.input_index = ((CKParameterOperation*)ss_Owner)->GetInParameter1() == sharedSource ? 0 : 1; mDb->mDbHelper.script_pLink.input_index = ((CKParameterOperation*)ss_Owner)->GetInParameter1() == sharedSource ? 0 : 1;
break; break;
} }