commit 15/07/2025

This commit is contained in:
2025-07-15 16:09:06 +07:00
parent b63c0f1d65
commit bb435fcf0b
39 changed files with 598 additions and 0 deletions

15
src/CRSDK/CrAFAssist.java Normal file
View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrAFAssist {
CrAFAssist_Off (0x01),
CrAFAssist_On (CrAFAssist_Off.getValue()+1);
private final CrInt8u value;
CrAFAssist(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

15
src/CRSDK/CrAWB.java Normal file
View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrAWB {
CrAWB_Up (0x0001),
CrAWB_Down (CrAWB_Up.getValue()+1);
private final CrInt16u value;
CrAWB(int value) {
this.value = new CrInt16u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrAssignableButton {
CrAssignableButton_Up (0x0001),
CrAssignableButton_Down (CrAssignableButton_Up.getValue()+1);
private final CrInt16u value;
CrAssignableButton(int value) {
this.value = new CrInt16u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrAssignableButtonIndicator {
CrAssignableButtonIndicator_Off (0x1),
CrAssignableButtonIndicator_On (CrAssignableButtonIndicator_Off.getValue()+1);
private final CrInt8u value;
CrAssignableButtonIndicator(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrAudioRecording {
CrAudioRecording_Off (0x00),
CrAudioRecording_On (CrAudioRecording_Off.getValue()+1);
private final CrInt8u value;
CrAudioRecording(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrCancelRemoteTouchOperationEnableStatus {
CrCancelRemoteTouchOperation_Disable (0x00),
CrCancelRemoteTouchOperation_Enable (CrCancelRemoteTouchOperation_Disable.getValue()+1);
private final CrInt8u value;
CrCancelRemoteTouchOperationEnableStatus(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrCurrentSceneFileEdited {
CrCurrentSceneFileEdited_Unedited (0x01),
CrCurrentSceneFileEdited_Edited (CrCurrentSceneFileEdited_Unedited.getValue()+1);
private final CrInt8u value;
CrCurrentSceneFileEdited(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,14 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrDepthOfFieldAdjustmentInterlockingMode {
CrDepthOfFieldAdjustmentInterlockingMode_NDInterlockingMode (0x01),
CrDepthOfFieldAdjustmentInterlockingMode_GainInterlockingMode (CrDepthOfFieldAdjustmentInterlockingMode_NDInterlockingMode.getValue()+1);
private final CrInt8u value;
CrDepthOfFieldAdjustmentInterlockingMode(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrDepthOfFieldAdjustmentMode {
CrDepthOfFieldAdjustmentMode_OFF (0x01),
CrDepthOfFieldAdjustmentMode_ON (CrDepthOfFieldAdjustmentMode_OFF.getValue()+1);
private final CrInt8u value;
CrDepthOfFieldAdjustmentMode(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrExtendedInterfaceMode {
CrExtendedInterfaceMode_Off (0x01),
CrExtendedInterfaceMode_On (CrExtendedInterfaceMode_Off.getValue()+1);
private final CrInt8u value;
CrExtendedInterfaceMode(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,16 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrFaceEyeDetectionAF {
CrFaceEyeDetectionAF_Off (0x01),
CrFaceEyeDetectionAF_FaceEyeOnlyAF (CrFaceEyeDetectionAF_Off.getValue()+1),
CrFaceEyeDetectionAF_FaceEyePriorityAF (CrFaceEyeDetectionAF_Off.getValue()+2);
private final CrInt8u value;
CrFaceEyeDetectionAF(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrFocusBracketShootingStatus {
CrFocusBracket_NotShooting (0x00),
CrFocusBracket_Shooting (CrFocusBracket_NotShooting.getValue()+1);
private final CrInt8u value;
CrFocusBracketShootingStatus(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrFocusModeSetting {
CrFocusModeSetting_Automatic (0x01),
CrFocusModeSetting_Manual (CrFocusModeSetting_Automatic.getValue()+1);
private final CrInt8u value;
CrFocusModeSetting(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,16 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrFocusOperation {
CrFocusOperation_Wide (-1),
CrFocusOperation_Stop (0),
CrFocusOperation_Tele (1);
private final CrInt8 value;
CrFocusOperation(int value) {
this.value = new CrInt8(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrFocusTouchSpotStatus {
CrFocusTouchSpotStatus_Stopped (0x01),
CrFocusTouchSpotStatus_Running (CrFocusTouchSpotStatus_Stopped.getValue()+1);
private final CrInt8u value;
CrFocusTouchSpotStatus(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,16 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrFocusTrackingStatus {
CrFocusTrackingStatus_OFF (0x01),
CrFocusTrackingStatus_Focusing (CrFocusTrackingStatus_OFF.getValue()+1),
CrFocusTrackingStatus_Tracking (CrFocusTrackingStatus_OFF.getValue()+2);
private final CrInt8u value;
CrFocusTrackingStatus(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,16 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrFunctionOfRemoteTouchOperation {
CrFunctionOfRemoteTouchOperation_Tracking_AF (0x01),
CrFunctionOfRemoteTouchOperation_Spot_AF (CrFunctionOfRemoteTouchOperation_Tracking_AF.getValue()+1),
CrFunctionOfRemoteTouchOperation_AFAreaSelect (CrFunctionOfRemoteTouchOperation_Tracking_AF.getValue()+2);
private final CrInt8u value;
CrFunctionOfRemoteTouchOperation(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrGainUnitSetting {
CrGainUnitSetting_dB (0x01),
CrGainUnitSetting_ISO (CrGainUnitSetting_dB.getValue()+1);
private final CrInt8u value;
CrGainUnitSetting(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrLensInformationEnableStatus {
CrLensInformation_Disable (0x00),
CrLensInformation_Enable (CrLensInformation_Disable.getValue()+1);
private final CrInt8u value;
CrLensInformationEnableStatus(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,16 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrLensInformationType {
CrLensInformationType_Undefined (0x00000000),
CrLensInformationType_Feet (CrLensInformationType_Undefined.getValue()+1) ,
CrLensInformationType_Meter (CrLensInformationType_Undefined.getValue()+2);
private final CrInt32u value;
CrLensInformationType(int value) {
this.value = new CrInt32u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrMovieRecButtonToggleEnableStatus {
CrMovieRecButtonToggle_Disable (0x00),
CrMovieRecButtonToggle_Enable (CrMovieRecButtonToggle_Disable.getValue()+1);
private final CrInt8u value;
CrMovieRecButtonToggleEnableStatus(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,18 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrMovieShootingMode {
CrMovieShootingMode_Off (0x0001),
CrMovieShootingMode_CineEI (0x0301),
CrMovieShootingMode_CineEIQuick (CrMovieShootingMode_CineEI.getValue()+1),
CrMovieShootingMode_Custom (0x0401),
CrMovieShootingMode_FlexibleISO (0x0501);
private final CrInt16u value;
CrMovieShootingMode(int value) {
this.value = new CrInt16u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrMovieShootingModeTargetDisplay {
CrMovieShootingModeTargetDisplay_BT709 (0x01),
CrMovieShootingModeTargetDisplay_BT2020 (CrMovieShootingModeTargetDisplay_BT709.getValue()+1);
private final CrInt8u value;
CrMovieShootingModeTargetDisplay(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrMovieXButton {
CrMovieXButton_Up (0x0001),
CrMovieXButton_Down (CrMovieXButton_Up.getValue()+1);
private final CrInt16u value;
CrMovieXButton(int value) {
this.value = new CrInt16u(value);
}
public int getValue() {
return value.intValue();
}
}

15
src/CRSDK/CrNDFilter.java Normal file
View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrNDFilter {
CrNDFilter_OFF (0x01),
CrNDFilter_ON(CrNDFilter_OFF.getValue()+1);
private final CrInt8u value;
CrNDFilter(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrNDFilterModeSetting {
CrNDFilterModeSetting_Automatic (0x01),
CrNDFilterModeSetting_Manual (CrNDFilterModeSetting_Automatic.getValue()+1);
private final CrInt8u value;
CrNDFilterModeSetting(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,16 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrNDFilterSwitchingSetting {
CrNDFilterSwitchingSetting_Preset (0x01),
CrNDFilterSwitchingSetting_Variable (CrNDFilterSwitchingSetting_Preset.getValue()+1),
CrNDFilterSwitchingSetting_Step (CrNDFilterSwitchingSetting_Preset.getValue()+2);
private final CrInt8u value;
CrNDFilterSwitchingSetting(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrPixelMappingEnableStatus {
CrPixelMapping_Disable (0x00),
CrPixelMapping_Enable (CrPixelMapping_Disable.getValue()+1);
private final CrInt8u value;
CrPixelMappingEnableStatus(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrRecorderControlSetting {
CrRecorderControlSetting_RecDisable (0x00),
CrRecorderControlSetting_RecEnable (CrRecorderControlSetting_RecDisable.getValue()+1);
private final CrInt8u value;
CrRecorderControlSetting(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,16 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrRecorderSaveDestination {
CrRecorderSaveDestination_External (0x0001),
CrRecorderSaveDestination_Internal (0x0010),
CrRecorderSaveDestination_ExternalAndInternal (0x0011);
private final CrInt16u value;
CrRecorderSaveDestination(int value) {
this.value = new CrInt16u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrRecorderStart {
CrRecorderStart_RecStartDisable (0x00),
CrRecorderStart_RecStartEnable (CrRecorderStart_RecStartDisable.getValue()+1);
private final CrInt8u value;
CrRecorderStart(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,19 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrRecorderStatus {
CrRecorderStatus_Idle (0x00),
CrRecorderStatus_Ready (CrRecorderStatus_Idle.getValue()+1),
CrRecorderStatus_PreparingToRecord (CrRecorderStatus_Idle.getValue()+2),
CrRecorderStatus_Standby (CrRecorderStatus_Idle.getValue()+3),
CrRecorderStatus_Recording (CrRecorderStatus_Idle.getValue()+4),
CrRecorderStatus_Stopping (CrRecorderStatus_Idle.getValue()+5);
private final CrInt8u value;
CrRecorderStatus(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrRemoteTouchOperationEnableStatus {
CrRemoteTouchOperation_Disable (0x00),
CrRemoteTouchOperation_Enable (CrRemoteTouchOperation_Disable.getValue()+1);
private final CrInt8u value;
CrRemoteTouchOperationEnableStatus(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,14 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrSQFrameRate {
CrSQFrameRate_Invalid (0x0000);
private final CrInt16u value;
CrSQFrameRate(int value) {
this.value = new CrInt16u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrShutterECSSetting {
CrShutterECSSetting_OFF (0x01),
CrShutterECSSetting_ON (CrShutterECSSetting_OFF.getValue()+1);
private final CrInt8u value;
CrShutterECSSetting(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrShutterMode {
CrShutterMode_Speed (0x01),
CrShutterMode_Angle (CrShutterMode_Speed.getValue()+1);
private final CrInt8u value;
CrShutterMode(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrShutterSetting {
CrShutterSetting_OFF (0x01),
CrShutterSetting_ON (CrShutterSetting_OFF.getValue()+1);
private final CrInt8u value;
CrShutterSetting(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,16 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrSubjectRecognitionAF {
CrSubjectRecognitionAF_Off (0x01),
CrSubjectRecognitionAF_OnlyAF (CrSubjectRecognitionAF_Off.getValue()+1),
CrSubjectRecognitionAF_PriorityAF (CrSubjectRecognitionAF_Off.getValue()+2);
private final CrInt8u value;
CrSubjectRecognitionAF(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}

View File

@@ -0,0 +1,15 @@
package CRSDK;
@SuppressWarnings("unused")
public enum CrWhiteBalanceModeSetting {
CrWhiteBalanceModeSetting_Automatic (0x01),
CrWhiteBalanceModeSetting_Manual (CrWhiteBalanceModeSetting_Automatic.getValue()+1);
private final CrInt8u value;
CrWhiteBalanceModeSetting(int value) {
this.value = new CrInt8u(value);
}
public int getValue() {
return value.intValue();
}
}