Played in either Nintendo Wii or Dolphin(Ishiiruka).

No Name Country P Score Issue Remark
1 Resident Evil 4 USA 1 85 1. savestates
2. occasional crash after communication
Control is so hard. Might need cheat codes to counter.
2 Wii Sports Resort Korea 4 90   Good exercise
3 Gunblade NY & L.A. Machineguns USA 2 82    
4 Link's Crossbow Training USA 4 73    
5 Call of Duty 3 USA 1 80   Great game series but QTE sucks
6 Ghost Squad USA 4 85   C + Right: SPR11(better than CAC80)
7 Bass Pro Shops - The Hunt USA 1 80    
8 Busy Scissors USA 1 70   New style
9 Wii Party USA 4 85 Store EFB Copies to Texture Only: off  
10 Tom Clancy's Ghost Recon USA 2 85   Aim(Z) first and shoot(B). Change Weapon(C)
11 Wheel of Fortune USA 3 85 corrupt save error if you attempt to save  
12 M&M's Beach Party USA 4 65    
13 Tetris Party Deluxe USA 4 69    
14 Animal Crossing - City Folk USA 1 69   Online
15 Monopoly Collection USA 4   *Texture Cache Accuracy: Position 1 (Safe)  
16 Monopoly Streets USA 4 90 Dual core crash Sideways Wii Remote. Change rules.
17 The Conduit USA 1      
18 Conduit 2 USA 4 85    
19 Family Game Night 4 - The Game Show USA 2      
20 Fantasy Aquarium World USA 1 30    
21 Sniper Elite USA 2 81   Player2 view and shooting are buggy.
22 Jambo! Safari: Animal Rescue USA 4 72    
23 Nick Jr. Go Diego Go! Safari Rescue USA 2 71    
24 Lost in Blue - Shipwrecked USA 1 50    
25 10 Minute Solution USA 1 73    
26 Heavy Fire: Afghanistan USA 4      
27 Top Shot: Arcade USA 4 80   Turn on wifi
28 Nerf N-Strike USA 4 73    
29 Nerf N-Strike Elite USA 2 72    
30 Nerf N-Strike - Double Blast Bundle USA 4      
31 WordJong Party USA 4 85    
32 NBA 2K13 USA 4 85 Frequent Crash  
33 NBA Jam USA 4 90 Occasional Crash  
34 World of Zoo USA 4 65   Kids

n.b. Grey: Closed; Yellow: Completed

 

* Texture Cache Accuracy: GFX.ini or User config: SMPE69.ini

[Settings]
SafeTextureCacheColorSamples = 0

Menu: Graphics-Hacks-Texture Cache - 0(safe), 128(default:fast)

 

N.B. Game specific settings(ini) will go under "GameSettings" folder.

파일이 자주 추가되거나 삭제될때 사용하기 위해 기존의 버전을 업그레이드 했습니다.

To Do List: 메인함수 module화

'Force the explicit declaration of variables
Option Explicit

' Revision History:
' Rev       Date(yyyy/mm/dd)        Description
' **************************************************************************************
' 1         2017-Oct-28             Initial Release
' 2         2017-Oct-28             Enter the folder name
' 3         2017-Oct-29             Use File Dialog
' 4         2022-Dec-11             Copy Sheet
' 5         2022-Dec-12             Add DateCreated
' 6         2022-Dec-26             addRow, setRowCnt
' 7         2022-Dec-28             Add one line of summary for statistics
' 8         2023-Jan-10             Format month and day(date)
' 9         2023-Jan-19             Total File Size, walkaround for the compile error of format(date, "mm")
' **************************************************************************************


Sub ListFiles()

     'Set a reference to Microsoft Scripting Runtime by using
     'Tools > References in the Visual Basic Editor (Alt+F11)
     
     'Declare the variables
     Dim objFSO As FileSystemObject
     Dim objFolder As Folder
     Dim objFile As File
     Dim strPath As String
     Dim strFile As String
     Dim NextRow As Long
     Dim dblFileSize As Double
     Dim dblFileTotalSize As Double
     
     
     'Added Codes Begin
     Dim Msg As String
     
     Call clearContents
     
     'Open the file dialog
     With Application.FileDialog(msoFileDialogFolderPicker)
        .AllowMultiSelect = False
        If .Show = -1 Then
            'MsgBox (.SelectedItems(1))
            strPath = .SelectedItems(1)
        Else
            Exit Sub
        End If
     End With
  
     
     'Msg = "Write down the folder name, please: " & vbCr
     'Msg = Msg & "e.g. C:\Users\Steve\Documents\Vids\"
     'strPath = Trim(InputBox(Msg, "Input"))
  
     If right(strPath, 1) <> "\" Then strPath = strPath & "\"
     
     'Added Codes End
     
     'Create an instance of the FileSystemObject
     Set objFSO = CreateObject("Scripting.FileSystemObject")
     
     'Get the folder
     Set objFolder = objFSO.GetFolder(strPath)
     
     'If the folder does not contain files, exit the sub
     If objFolder.Files.Count = 0 Then
         MsgBox "No files were found...", vbExclamation
         Exit Sub
     End If
     
     'Turn off screen updating
     Application.ScreenUpdating = False
     
     'Insert the headers for Columns A, B, C, and D
     Cells(1, "A").Value = "File Name"
     Cells(1, "B").Value = "Path"
     Cells(1, "C").Value = "Size"
     Cells(1, "D").Value = "Created Date"
     
     'Find the next available row
     NextRow = Cells(Rows.Count, "A").End(xlUp).Row + 1
     
     'Loop through each file in the folder
     For Each objFile In objFolder.Files
     
         'List the name, size, and date/time of the current file
         Cells(NextRow, 1).Value = objFile.Name
         'Cells(NextRow, 2).Value = objFile.Path
         Cells(NextRow, 2).Value = objFile.ParentFolder
         'Cells(NextRow, 3).Value = objFile.Size
         dblFileSize = objFile.Size
         Cells(NextRow, 3).Value = dblFileSize
         'Cells(NextRow, 3).Value = format(Round(dblFileSize / 1000000, 0), "#,#") & " MB" 'Format(n, "#,#")

         Cells(NextRow, 4).Value = objFile.DateCreated
         
         'Determine the next row
         NextRow = NextRow + 1
         dblFileTotalSize = dblFileTotalSize + dblFileSize
     
     Next objFile
     
     'Change the width of the columns to achieve the best fit
     'Columns.AutoFit
     'Format Cells
     Range(Cells(2, 3), Cells(Rows.Count, "D").End(xlUp)).Select
     Selection.HorizontalAlignment = xlRight
     Range(Cells(2, 4), Cells(Rows.Count, "D").End(xlUp)).Select
     Selection.NumberFormatLocal = "yyyy-mm-dd hh:mm"
     Selection.HorizontalAlignment = xlCenter
     Range("A1").Select
     
    Call copySheet
    
    Dim searchCnt As Long
    Dim Cell As Range
    For Each Cell In ActiveSheet.UsedRange.Columns(1).Cells
        If InStr(Cell.Value, "_error_") > 0 Then
            searchCnt = searchCnt + 1
        End If
    Next Cell
    'MsgBox "searchCnt = " & searchCnt
    
    Call addRow
    Call addFilter
    Call setRowCnt(searchCnt, dblFileTotalSize)
    Range("A1").Select
    
    'Turn screen updating back on
    Application.ScreenUpdating = True
         
End Sub

Private Sub clearContents()
    Worksheets("listFiles").Range("A1").EntireColumn.EntireRow.clearContents
End Sub

Private Sub copySheet()
    'Sheets(1).Copy after:=Sheets(1)
    Sheets(1).Copy after:=Sheets(ActiveWorkbook.Sheets.Count)
   
    'Remove Buttons
    Dim I As Long
    Dim xOLE As Object
    ActiveSheet.Buttons.Delete
    For Each xOLE In ActiveSheet.OLEObjects
        If TypeName(xOLE.Object) = "CommandButton" Then
            xOLE.Delete
        End If
    Next
  
    Dim n As Integer
    Dim shtName As String
    Dim dtToday As Date
    Dim sMonth As String
    
    'MsgBox (Year(Date) & Month(Date) & Day(Date))
    'shtName = "List_" & Year(Date) & Month(Date) & Day(Date)
    dtToday = Date
    sMonth = Month(dtToday)
    If Len(sMonth) = 1 Then
        sMonth = "0" & sMonth
    End If
    'shtName = "List_" & Year(dtToday) & format(dtToday, "mm") & format(dtToday, "dd")
    shtName = "List_" & Year(dtToday) & sMonth & format(dtToday, "dd")
    
    
    'Format(Now, "yyyy/mm/dd/hh/mm/ss")
    'dtToday = Now
    'shtName = "List_" & Year(Now) & Month(Now) & Day(Now) & Hour(Now) & Minute(Now) & Second(Now)
    'shtName = "List_" & Year(dtToday) & Month(dtToday) & Day(dtToday) & Hour(dtToday) & Minute(dtToday) & Second(dtToday)
    'shtName = "List_" & Year(dtToday) & format(dtToday, "mm") & Day(dtToday) & Hour(dtToday) & Minute(dtToday) & Second(dtToday)
    
    
    Do While (shCheck(shtName))
        shtName = shtName & " (2)"
        'shtName = Replace(shtName, "_", "")
    Loop
    'Sheets(2).Name = shtName
    ActiveSheet.Name = shtName
End Sub

' 해당시트가 있으면 True를, 그렇지 않으면 False 를 반환합니다
Private Function shCheck(shName$) As Boolean
   On Error GoTo ec1
   If CBool(Len(Sheets(shName$).Name)) Then shCheck = True
   Exit Function
ec1:
   shCheck = False
End Function

Private Sub addRow()
    Rows("1:1").Select
    Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
End Sub

Private Sub addFilter()
    Range("A2:D2").Select
    Selection.AutoFilter
    With Selection
        .HorizontalAlignment = xlCenter
        .VerticalAlignment = xlCenter
        .WrapText = False
        .Orientation = 0
        .AddIndent = False
        .IndentLevel = 0
        .ShrinkToFit = False
        .ReadingOrder = xlContext
        .MergeCells = False
    End With
    Selection.Font.Bold = True
    Range("B3").Select
    ActiveWindow.FreezePanes = True
    
    'Range("A1").Select
End Sub

Private Sub setRowCnt(ByVal searchCnt As Long, ByVal dblFileTotalSize As Double)
    'MsgBox "searchCnt = " & searchCnt
    Dim rowCnt As Long
    rowCnt = Range("a3", Range("a2").End(xlDown)).Rows.Count
    rowCnt = rowCnt - searchCnt
    
    Cells(1, 1) = "Number of Working Games"
    Cells(1, 2) = rowCnt
    Cells(1, 3) = "Excluded"
    Cells(1, 4) = searchCnt
    Cells(1, 5) = "Total Size"

    If (dblFileTotalSize > 1000000000) Then
        Cells(1, 6) = format(Round(dblFileTotalSize / 1000000000, 0), "#,#") & " GB" 'Format(n, "#,#")
    Else
        Cells(1, 6) = dblFileTotalSize
    End If
    
    Range("A1").Select
    Selection.HorizontalAlignment = xlCenter
    Range("C1").Select
    Selection.HorizontalAlignment = xlCenter
    Columns("E:E").EntireColumn.AutoFit
    Range("E1").Select
    Selection.HorizontalAlignment = xlCenter
    Columns("F:F").EntireColumn.AutoFit
    Range("F1").Select
    Selection.Style = "Comma [0]"
    
End Sub

listFiles_v4_20221211.xls
0.40MB
listFiles_v5_20221212_upload.xls
0.25MB
listFiles_v6_20221226.xls
0.16MB

※ 서브 디렉토리 포함(기존에 됐었던 것 같은데, 안되네요. 필요시 다음 링크 참조)

[vba] 하위폴더 내의 모든 파일 정보 가져오기 :: 개발하는 디자이너의 DIY 일상 (tistory.com)

 

[vba] 하위폴더 내의 모든 파일 정보 가져오기

일을 하다 보면 가끔 업무를 진행하던 경로 하위에 있는 데이들의 리스트를 만들어야 하는 경우가 있습니다. 하나의 폴더라면 어떻게 해보겠는데 그 폴더가 하위 뎁스가 연속해서 있고 저장되

diy-dev-design.tistory.com

 

 

Controller Configuration(Ishiiruka-Dolphin, 1142)

 

Controller Configuration - Emulated Wii Remote(Ishiiruka-Dolphin, 1142)

 

Controller Configuration - Nunchuk(Ishiiruka-Dolphin, 1142)

 

Emulated Wii Remote로 설정할 경우 "DInput/0/Keyboard Mouse"를 선택하고 Default를 클릭해주면 아래와 같이 자동으로 설정됩니다. 필요에 따라 변경해주면 됩니다.

Shake버튼은 변경해주는 것이 좋습니다. (X: 가로, Y: 세로, Z:사용자와의 거리)

 

Shake버튼은 설정해 주세요.

1 ··· 19 20 21 22 23 24 25 ··· 60 

글 보관함

카운터

Total : / Today : / Yesterday :
get rsstistory!