FUNCTION z_hr_wf_rule_get_manager. *"---------------------------------------------------------------------- *"*"Local Interface: *" TABLES *" ACTOR_TAB STRUCTURE SWHACTOR *" AC_CONTAINER STRUCTURE SWCONT *" EXCEPTIONS *" NOBODY_FOUND *"---------------------------------------------------------------------- * * Author: Jon Amos * Date: 2007-02-12 * * Description: * This FM was built based on SWX_GET_MANAGER. * That FM gets the manager for an HR Object (i.e. UserID, etc). * However, it only looks up one level in the reporting structure. * This FM keeps searching up the reporting structure until it finds * a filled position (or reachs the top of the reportning structure). * *---------------------------------------------------------------------
* Container macros INCLUDE.
* Constants (for checking relationship config) CONSTANTS: co_pprel TYPE t77s0-grpid VALUE'PPREL', co_orgha TYPE t77s0-semid VALUE'ORGHA'.
* Relationship subtype for 'Reports to' (to account for customer specific config) DATA: lv_orgha LIKE plog-subty.
* Evaluation Path for 'Holder' DATA: lv_eval_path TYPE t77aw-wegid, "THY160604#746188 lv_ev_is_internal TYPE xflag. "THY160604#746188
* Variables stored in container DATA: lv_plvar TYPE hrsobid-plvar. DATA: lv_otype TYPE hrsobid-otype. DATA: lv_sobid TYPE hrsobid-sobid. DATA: ls_org_object TYPE swhactor.
* Data objects for leading positions DATA: lw_leadpos TYPE hrobject, lt_leadpos TYPETABLEOF hrobject, lt_currpos TYPETABLEOF hrobject.
FIELD-SYMBOLS: TYPE hrobject.
* Data objects for HR relationships DATA: lt_relations TYPETABLEOF p1001.
* Get the HR object to start from swc_get_element ac_container 'ORG_OBJECT' ls_org_object. IF sy-subrc > 0OR ls_org_object ISINITIAL. swc_get_element ac_container 'OTYPE' lv_otype. swc_get_element ac_container 'OBJID' lv_sobid. ELSE. lv_otype = ls_org_object-otype. lv_sobid = ls_org_object-objid. ENDIF.
IF lv_otype ISINITIALOR lv_sobid ISINITIAL. * Msg: There is no chief position for & &. MESSAGE e802(5w) WITH lv_otype lv_sobid RAISING nobody_found. ENDIF.
* Get the Active WF Org Plan swc_get_element ac_container 'PLVAR' lv_plvar.
*----- * (Jon Amos) NOTE: * We never want to consider vacant positions since we will check this ourselves *----- * consider vacant positions flag in table T77S0 * wflow-vapos * PERFORM re77s0(mstt77s0) USING 'WFLOW' 'VAPOS' lv_sw_vapos lv_subrc.
* Get leading position(s) for passed HR object -- one level up in Reporting Structure CALLFUNCTION'RH_GET_LEADING_POSITION' EXPORTING plvar = lv_plvar otype = lv_otype sobid = lv_sobid date = sy-datum auth = ' ' consider_vac_pos = space TABLES leading_pos = lt_leadpos EXCEPTIONS no_lead_pos_found = 1 OTHERS = 2.
* Search up the Reporting Structure for the first filled position DO.
* Have we run out of positions to check (without finding a holder)? IF lt_leadpos[] ISINITIAL. * Msg: There is no chief position for & &. MESSAGE e802(5w) WITH lv_otype lv_sobid RAISING nobody_found. ENDIF.
* Process the leading position(s) LOOPAT lt_leadpos ASSIGNING.
* Get the holder(s) of the position CALLFUNCTION'RH_STRUC_GET' EXPORTING act_otype = -otype act_objid = -objid act_wegid = lv_eval_path "THY180604#746188 act_int_flag = lv_ev_is_internal "THY180604#746188 TABLES result_tab = result_tab EXCEPTIONS no_plvar_found = 1 no_entry_found = 2 OTHERS = 3.
* Add the holder(s) to the Actor_tab APPENDLINESOF result_tab TO actor_tab.
ENDLOOP. "loop at lt_leadpos...
IF actor_tab[] ISNOTINITIAL. * Stop looking EXIT.
ELSE. * The leading positions become the current positions lt_currpos = lt_leadpos.
* Initialize CLEAR lt_leadpos.
* Get the leading positions for current leading positions CALLFUNCTION'RH_READ_INFTY_1001' EXPORTING istat = '1' subty = lv_orgha begda = sy-datum endda = sy-datum TABLES i1001 = lt_relations OBJECTS = lt_currpos EXCEPTIONS nothing_found = 1 wrong_condition = 2 OTHERS = 3.
* Build table for next loop pass IF sy-subrc = 0. LOOPAT lt_relations ASSIGNING. CLEAR lw_leadpos. lw_leadpos-plvar = -plvar. lw_leadpos-otype = -sclas. lw_leadpos-objid = -sobid. APPEND lw_leadpos TO lt_leadpos. ENDLOOP. ENDIF. "IF sy-subrc.... ENDIF. "IF actor_tab[].... ENDDO.
* Only keep the Actors that are Persons or Users * THY 180604 Note 746188 DELETE actor_tab WHERE otype <> 'P'AND otype <> 'US'. * }
REPORT zmemory. INCLUDE. TABLES : sscrfields. *** internal table for storing the list of icons temporarily DATA : BEGINOF i_icons OCCURS1000, idLIKEicon-id, ENDOF i_icons. *** internal table for storing the 32 icons/pictures DATA : BEGINOF i_iconlist OCCURS32, idLIKEicon-id, ENDOF i_iconlist. *** internal table for storing the icons in the 64 positions DATA : BEGINOF i_layout OCCURS0, row(1) TYPE n, col(1) TYPE n, idLIKEicon-id, ENDOF i_layout. *** data declaration DATA : w_layout LIKE i_layout. DATA : ran_no TYPEi. DATA : len TYPEi. DATA : subrc LIKE sy-subrc. DATA : countTYPEi. DATA : name(10). DATA : flg_one. DATA : flg_two. DATA : icon_one LIKEicon-id. DATA : icon_two LIKEicon-id. DATA : b_one(5). DATA : b_two(5). DATA : current_ucomm LIKE sscrfields-ucomm. DATA : ls_memory TYPE zmemory. DATA: lv_start TYPEi, lv_total TYPEi, lv_tick TYPEi, lv_timlo TYPEi.
FIELD-SYMBOLS : TYPEANY. **** selection-screen declaration. *** keeping the button names and its user-command same will *** make things easier later.... SELECTION-SCREENBEGINOFBLOCK b1 WITHFRAMETITLEtitleNO INTERVALS.
*** make sure it is one of the buttons that is clicked and *** not clicking the same button again *** exception is if 2 are open and you want to keep the 2nd one open *** you can do so....
CHECK sscrfields-ucomm CS'PB'AND ( sscrfields-ucomm <> current_ucomm OR NOT flg_two ISINITIAL ). current_ucomm = sscrfields-ucomm. *** making sure again that a button is clicked and get the icon *** hidden in the clicked button. READTABLE i_layout WITHKEY row = sscrfields-ucomm+2(1) col = sscrfields-ucomm+3(1). CHECK sy-subrc = 0. PERFORM validate. *&---------------------------------------------------------------------* *& Form validate *&---------------------------------------------------------------------* * checking whether its the 1st or the 2nd button click, assign the ucomm * to the field-symbol. The trick is the buttons have been named same as * its ucomm, so assigning it gives the value of the button. *----------------------------------------------------------------------* * --> p1 text * <-- p2 text *----------------------------------------------------------------------* FORM validate. IFNOT flg_two ISINITIAL. ASSIGN (b_one) TO. = '@5F@'. ASSIGN (b_two) TO. = '@5F@'. CLEAR : flg_one,flg_two, icon_one,icon_two, b_one,b_two. ENDIF. IF flg_one ISINITIALOR flg_two ISINITIAL. ASSIGN (sscrfields-ucomm) TO. IF sy-subrc = 0. = i_layout-id. ENDIF. IF flg_one ISINITIAL. flg_one = 'X'. icon_one = i_layout-id. b_one = sscrfields-ucomm. ELSEIF flg_two ISINITIAL. flg_two = 'X'. icon_two = i_layout-id. b_two = sscrfields-ucomm. ENDIF. ENDIF. IF icon_one = icon_two. p_tries = p_tries + 1. DELETE i_layout WHEREid = icon_one. CLEAR : flg_one,flg_two,icon_one,icon_two. ENDIF. IFNOT flg_two ISINITIAL. p_tries = p_tries + 1. ENDIF.
ENDFORM. " validate *&---------------------------------------------------------------------* *& Form do_initialization *&---------------------------------------------------------------------* * Make all the buttons show blank space. Also select, the list of * all icons from the standard table and select 32 from it randomly. Once * the 32 icons are selected, lay it out in pairs on the 8 X 8 board of * buttons. *----------------------------------------------------------------------* *----------------------------------------------------------------------* FORM do_initialization.
MESSAGE i001(00) WITH'Welcome to the Memory Game!!!'.
DATA: lv_score TYPE numc4, lv_name TYPE uname.
*l_second. *h_second. SELECTMAX( sc_seconds ) FROM zmemory INTO lv_score WHERE uname = sy-uname. IF sy-subrc NE0. l_score = 'Not Completed Game Yet'. ELSE. CONCATENATE lv_score space INTO h_second SEPARATEDBY space. ENDIF. CLEAR: lv_score.
SELECTMIN( sc_seconds ) FROM zmemory INTO lv_score WHERE uname = sy-uname. IF sy-subrc NE0. l_score = 'Not Completed Game Yet'. ELSE. CONCATENATE lv_score space INTO l_second SEPARATEDBY space. ENDIF. CLEAR: lv_score.
SELECTMAX( sc_tries ) FROM zmemory INTO lv_score WHERE uname = sy-uname. IF sy-subrc NE0. p_score = 'Your Previous Score is ZERO'. ELSE. CONCATENATE lv_score space INTO l_score SEPARATEDBY space. ENDIF. CLEAR: lv_score.
SELECTMIN( sc_tries ) FROM zmemory INTO lv_score WHERE uname = sy-uname. IF sy-subrc NE0. p_score = 'Your Previous Score is ZERO'. ELSE. CONCATENATE lv_score space INTO p_score SEPARATEDBY space. ENDIF.
CLEAR lv_score.
SELECTMIN( sc_tries ) FROM zmemory INTO lv_score. IF sy-subrc NE0. h_score = 'Higest Score is ZERO'. ELSE. SELECTSINGLE * FROM zmemory INTO ls_memory WHERE sc_tries = lv_score. CONCATENATE lv_score 'by' ls_memory-uname 'on' ls_memory-sc_date INTO h_score SEPARATEDBY space. ENDIF.
CLEAR lv_score. SELECTMAX( sc_tries ) FROM zmemory INTO lv_score. IF sy-subrc NE0. plow_sc = 'Lowest Score is ZERO'. ELSE. SELECTSINGLE * FROM zmemory INTO ls_memory WHERE sc_tries = lv_score. CONCATENATE lv_score 'by' ls_memory-uname 'on' ls_memory-sc_date INTO plow_sc SEPARATEDBY space. ENDIF.
* Time SELECTMIN( sc_seconds ) FROM zmemory INTO lv_score. IF sy-subrc NE0. h_score = 'No One Played Yet'. ELSE. SELECTSINGLE * FROM zmemory INTO ls_memory WHERE sc_seconds = lv_score. CONCATENATE lv_score 'secs -' ls_memory-uname INTO y_second SEPARATEDBY space. ENDIF.
CLEAR lv_score. SELECTMAX( sc_seconds ) FROM zmemory INTO lv_score. IF sy-subrc NE0. h_score = 'No One Played Yet'. ELSE. SELECTSINGLE * FROM zmemory INTO ls_memory WHERE sc_seconds = lv_score. CONCATENATE lv_score 'secs -' ls_memory-uname INTO z_second SEPARATEDBY space. ENDIF.
title = 'Watch the Clock. The time is runnig so Hurry !'. yu_score = 'Your Best/Worst Score'. lu_secon = 'Your Best/Worst Time'. no_tries = 'No. of Tries/Time(Sec)'. hu_score = 'Best Score'. low_sc = 'Worst Score'. yu_secon = 'Overall Min/Max Time'.
REPORT zmarbles NOSTANDARDPAGE HEADING. *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* * I N C L U D E *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* INCLUDE.
*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* * D A T A D E F I N I T I O N *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* *....Types TYPES: BEGINOF ty_score, srl TYPEi, uname TYPE sy-uname, score TYPEi, timeTYPEi, ENDOF ty_score. *....Internal Tables DATA: BEGINOF itab OCCURS0, c1, c2, c3, c4, c5, c6, c7, c8, c9, ENDOF itab. DATA: BEGINOF it_print OCCURS0, c1(4), c2(4), c3(4), c4(4), c5(4), c6(4), c7(4), c8(4), c9(4), ENDOF it_print. DATA: it_score TYPESTANDARDTABLEOF ty_score. *....Work Areas DATA: wa_itab LIKE itab, wa_print LIKE it_print, w_score TYPE ty_score. *....Globle Variables DATA: l_no_m TYPEi, l_no_s TYPEi, l_no_c TYPE char10, l_half TYPEi, l_half_half TYPEi, l_print TYPE flag, l_name TYPE char20, l_mod TYPEi. DATA: w_on TYPE flag, w_sel_line TYPEi, w_sel_col TYPE char1, w_dest_ok TYPE flag, w_dest_line TYPEi, w_dest_col TYPE char1, w_field TYPE char20, w_line TYPEi, w_game_over TYPE flag, w_total TYPEi, w_rem TYPEi, w_gone TYPEi, w_st_time TYPEi, w_end_time TYPEi, w_exported TYPE flag. *....Field symbols FIELD-SYMBOLS: TYPEANY. *....Constants CONSTANTS: icon_0(40) TYPEcVALUE icon_wd_radio_button_empty, icon_1(40) TYPEcVALUE icon_radiobutton, icon_2(40) TYPEcVALUE icon_color. *.. Some systems don't have above listed ICONs You can use: **....Constants *CONSTANTS: ICON_0(40) TYPE C VALUE ICON_AVERAGE, " ICON_WD_RADIO_BUTTON_EMPTY, * ICON_1(40) TYPE C VALUE ICON_POSITIVE, " ICON_RADIOBUTTON, * ICON_2(40) TYPE C VALUE ICON_COLOR.
*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* * S E L E C T I O N S C R E E N *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* PARAMETERS: p_num TYPEiDEFAULT7. *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* * A T S E L E C T I O N - S C R E E N . *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* AT SELECTION-SCREEN. IF p_num GT9 OR p_num LT5. MESSAGE e398(00) WITH'Currently allowed only: 5, 7, 9'. ENDIF. l_mod = p_num MOD2. IF l_mod = 0. MESSAGE e398(00) WITH'Only odd numbers are allowed'. ENDIF. *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* * S T A R T O F S E L E C T I O N *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* START-OF-SELECTION. GETTIMEFIELD w_st_time. PERFORM fill_marbles. PERFORM fill_print_table. PERFORM write_marbles. *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* * A T L I N E S E L E C T I O N *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~* ATLINE-SELECTION. GETCURSORFIELD w_field. PERFORM calculate_marbles. PERFORM fill_print_table. sy-lsind = 0. PERFORM write_marbles. PERFORM check_game_over. *&---------------------------------------------------------------------* *& Form fill_marbles *&---------------------------------------------------------------------* * Fillup the initial table for the marbles *----------------------------------------------------------------------* FORM fill_marbles . * Grey cells l_half = FLOOR( p_num / 2 ). l_half_half = l_half / 2. r_not_grey-sign = 'I'. r_not_grey-option = 'BT'. r_not_grey-low = ( l_half - l_half_half ) + 1. r_not_grey-high = ( l_half + l_half_half ) - 1. APPEND r_not_grey. CLEAR r_not_grey. * Filling up the table DO p_num TIMES. l_no_m = sy-index. NEW-LINE. DO p_num TIMES. l_no_s = sy-index. CLEAR: l_print. IF l_no_m IN r_not_grey. l_print = 'X'. ENDIF. IF l_no_s IN r_not_grey. l_print = 'X'. ENDIF. IF l_print = 'X'. conv_i_c l_no_s l_no_c. CONCATENATE'WA_ITAB-C' l_no_c INTO l_name. ASSIGN (l_name) TO. IF l_no_s = l_half AND l_no_m = l_half. = '0'. w_total = w_total - 1. ELSE. = '1'. w_total = w_total + 1. ENDIF. ELSE. WRITE: ' '. ENDIF. ENDDO. APPEND wa_itab TO itab. CLEAR wa_itab. ENDDO. w_rem = w_total. ENDFORM. " fill_marbles *&---------------------------------------------------------------------* *& Form fill_print_Table *&---------------------------------------------------------------------* * Convert ITAB value to PRINT table value . *----------------------------------------------------------------------* FORM fill_print_table . FIELD-SYMBOLS: TYPEANY. REFRESH it_print. LOOPAT itab INTO wa_itab. l_no_m = sy-index. DO p_num TIMES. conv_i_c sy-index l_no_c. CLEAR l_name. CONCATENATE'WA_ITAB-C' l_no_c INTO l_name. ASSIGN (l_name) TO. CLEAR l_name. CONCATENATE'WA_PRINT-C' l_no_c INTO l_name. ASSIGN (l_name) TO. CASE. WHEN'1'. = icon_1. WHEN'0'. = icon_0. WHEN'2'. = icon_2. WHENOTHERS. ENDCASE. ENDDO. APPEND wa_print TO it_print. CLEAR wa_print. ENDLOOP. ENDFORM. " fill_print_Table *&---------------------------------------------------------------------* *& Form write_marbles *&---------------------------------------------------------------------* * Write marbles from the PRINT table *----------------------------------------------------------------------* FORM write_marbles . FIELD-SYMBOLS: TYPEANY. IF w_game_over ISINITIAL. LOOPAT it_print INTO wa_print. SKIP1. w_line = sy-tabix. WRITE: (2) w_line. HIDE w_line. DO p_num TIMES. conv_i_c sy-index l_no_c. CLEAR l_name. CONCATENATE'WA_PRINT-C' l_no_c INTO l_name. ASSIGN (l_name) TO. IFNOTISINITIAL. WRITE: (2) ASICONHOTSPOTON, (2) ' '. ELSE. WRITE: (2) ' ', (2) ' '. ENDIF. ENDDO. ENDLOOP. ENDIF. SKIP4. WRITE: /(30) 'Total Marbles:', w_total. WRITE: /(30) 'Remaining Marbles', w_rem. SKIP4. PERFORM write_5_high_score. ENDFORM. " write_marbles *&---------------------------------------------------------------------* *& Form calculate_marbles *&---------------------------------------------------------------------* * Calculate the marbles after the user input in line selection *----------------------------------------------------------------------* FORM calculate_marbles . * No marble has been selected IF w_on ISINITIAL. PERFORM validate_input. ELSE. * remove the seleced marble PERFORM deselect_marble. IF w_on = 'X'. * Check destination cell, if the same marble has not been selected PERFORM check_destination. ENDIF. ENDIF. * Destination is ok ..? rearrange the marbles in ITAB IF w_dest_ok = 'X'. PERFORM rearrange_marbles. ENDIF. ENDFORM. " calculate_marbles *&---------------------------------------------------------------------* *& Form validate_input *&---------------------------------------------------------------------* * Validating the selected marble, is it movable or not * if marble is movable, highlight it *----------------------------------------------------------------------* FORM validate_input . DATA: l_sel_field(20), l_tmp_field(20), l_sel_col(1), l_tmp_col(2), l_tmp_line TYPEi, l_ok TYPE flag. FIELD-SYMBOLS: TYPEANY, TYPEANY. READTABLE itab INTO wa_itab INDEX w_line. l_sel_field = w_field. l_sel_col = w_field+10(1). REPLACE'PRINT'INTO l_sel_field WITH'ITAB'. CONDENSE l_sel_field. ASSIGN (l_sel_field) TO. * value = 0 >> No marble IF = '0'. MESSAGE s398(00) WITH'No marble to select.!'. EXIT. ENDIF. * Check right l_tmp_col = l_sel_col + 2. IF l_tmp_col < 9. CONCATENATE'WA_ITAB-C' l_tmp_col INTO l_tmp_field. CONDENSE l_tmp_field. ASSIGN (l_tmp_field) TO. IF = '0'. l_ok = 'X'. ENDIF. ENDIF. * Check left IF l_ok ISINITIAL. l_tmp_col = l_sel_col - 2. IF l_tmp_col > 0. CONCATENATE'WA_ITAB-C' l_tmp_col INTO l_tmp_field. CONDENSE l_tmp_field. ASSIGN (l_tmp_field) TO. IF = '0'. l_ok = 'X'. ENDIF. ENDIF. ENDIF. * check Above IF l_ok ISINITIAL. l_tmp_line = w_line - 2. IF l_tmp_line > 0. READTABLE itab INTO wa_itab INDEX l_tmp_line. IF = '0'. l_ok = 'X'. ENDIF. READTABLE itab INTO wa_itab INDEX w_line. ENDIF. ENDIF. * Check underneath IF l_ok ISINITIAL. l_tmp_line = w_line + 2. IF l_tmp_line < 9. READTABLE itab INTO wa_itab INDEX l_tmp_line. IF = '0'. l_ok = 'X'. ENDIF. READTABLE itab INTO wa_itab INDEX w_line. ENDIF. ENDIF. * Ok .. than ON IF l_ok = 'X'. w_on = 'X'. = '2'. MODIFY itab FROM wa_itab INDEX w_line. w_sel_line = w_line. w_sel_col = l_sel_col . ELSE. MESSAGE s398(00) WITH'No marble to select.!'' '' '' '. ENDIF. ENDFORM. " validate_input *&---------------------------------------------------------------------* *& Form deselect_marble *&---------------------------------------------------------------------* * Deselect the marble if the same marble is selected again *----------------------------------------------------------------------* FORM deselect_marble . DATA: l_sel_field(20). FIELD-SYMBOLS: TYPEANY. READTABLE itab INTO wa_itab INDEX w_line. l_sel_field = w_field. REPLACE'PRINT'INTO l_sel_field WITH'ITAB'. CONDENSE l_sel_field. ASSIGN (l_sel_field) TO. IF = '2'. = '1'. MODIFY itab FROM wa_itab INDEX w_line. MESSAGE s398(00) WITH'Marble was deselected..!!'. CLEAR: w_on, w_sel_line, w_sel_col. ENDIF. ENDFORM. " deselect_marble *&---------------------------------------------------------------------* *& Form check_destination *&---------------------------------------------------------------------* * Check the destination cell, it should not be empty and distnce * between selected cell and destination cell must be 2 *----------------------------------------------------------------------* FORM check_destination . DATA: l_dest_field(20), l_dest_col(1), l_dest_not_ok TYPE flag, l_tmp_line TYPEi, l_tmp_col TYPEc. DATA: l_itab_dest LIKE itab. FIELD-SYMBOLS: TYPEANY. READTABLE itab INTO l_itab_dest INDEX w_line. l_dest_field = w_field. l_dest_col = w_field+10(1). REPLACE'WA_PRINT'INTO l_dest_field WITH'L_ITAB_DEST'. CONDENSE l_dest_field. ASSIGN (l_dest_field) TO. * Destination should be empty IF <> '0'. l_dest_not_ok = 'X'. ENDIF. * Calcualate the distance between selected marble and destination IF l_dest_not_ok ISINITIAL. IF w_sel_line <> w_line. l_tmp_line = ABS( w_sel_line - w_line ). IF l_tmp_line <> '2'. l_dest_not_ok = 'X'. ENDIF. ENDIF. ENDIF. IF l_dest_not_ok ISINITIAL. IF w_sel_col <> l_dest_col. l_tmp_col = ABS( w_sel_col - l_dest_col ). IF l_tmp_col <> '2'. l_dest_not_ok = 'X'. ENDIF. ENDIF. ENDIF. * destination not ok IF l_dest_not_ok = 'X'. MESSAGE s398(00) WITH'Destination is not GOOD'' '' '' '. ELSE. w_dest_ok = 'X'. w_dest_line = w_line. w_dest_col = l_dest_col. ENDIF. ENDFORM. " check_destination *&---------------------------------------------------------------------* *& Form rearrange_marbles *&---------------------------------------------------------------------* * Rearrange marbles * 1 Remove the marble which is inbetween the selected & destination * 2 Remove the marble from the selected cell * 3 Put marble on the destination cell *----------------------------------------------------------------------* FORM rearrange_marbles . DATA: l_field(20), l_tmp_line TYPEi, l_tmp_col TYPE char1, l_no_move TYPE flag, l_itab LIKE itab.
FIELD-SYMBOLS: TYPEANY. * Make the inbetween column as 0 if both lines are same IF w_sel_line = w_dest_line. IF w_sel_col > w_dest_col. l_tmp_col = w_dest_col + 1. ELSE. l_tmp_col = w_sel_col + 1. ENDIF. READTABLE itab INTO l_itab INDEX w_sel_line. l_field = w_field. REPLACE'WA_PRINT'INTO l_field WITH'L_ITAB'. CONDENSE l_field. l_field+8(1) = l_tmp_col. ASSIGN (l_field) TO. IF = 1. = '0'. w_gone = w_gone + 1. MODIFY itab FROM l_itab INDEX w_sel_line. ELSE. l_no_move = 'X'. ENDIF. CLEAR l_itab. ENDIF. * Make the inbetween line as 0 if both lines are same IF w_sel_col = w_dest_col. IF w_sel_line > w_dest_line. l_tmp_line = w_dest_line + 1. ELSE. l_tmp_line = w_sel_line + 1. ENDIF. READTABLE itab INTO l_itab INDEX l_tmp_line. l_field = w_field. REPLACE'WA_PRINT'INTO l_field WITH'L_ITAB'. CONDENSE l_field. l_field+8(1) = w_sel_col. ASSIGN (l_field) TO. IF = 1. = '0'. w_gone = w_gone + 1. MODIFY itab FROM l_itab INDEX l_tmp_line. ELSE. l_no_move = 'X'. ENDIF. CLEAR l_itab. ENDIF. IF l_no_move ISINITIAL. * Make Destination = 1 READTABLE itab INTO l_itab INDEX w_dest_line. l_field = w_field. REPLACE'WA_PRINT'INTO l_field WITH'L_ITAB'. CONDENSE l_field. l_field+8(1) = w_dest_col. ASSIGN (l_field) TO. = '1'. MODIFY itab FROM l_itab INDEX w_dest_line. CLEAR l_itab. * Make Selected = 0. READTABLE itab INTO l_itab INDEX w_sel_line. l_field = w_field. REPLACE'WA_PRINT'INTO l_field WITH'L_ITAB'. CONDENSE l_field. l_field+8(1) = w_sel_col. ASSIGN (l_field) TO. = '0'. MODIFY itab FROM l_itab INDEX w_sel_line. CLEAR l_itab. ELSE. * Make Selected = 1 when no movement READTABLE itab INTO l_itab INDEX w_sel_line. l_field = w_field. REPLACE'WA_PRINT'INTO l_field WITH'L_ITAB'. CONDENSE l_field. l_field+8(1) = w_sel_col. ASSIGN (l_field) TO. = '1'. MODIFY itab FROM l_itab INDEX w_sel_line. CLEAR l_itab. ENDIF. w_rem = w_total - w_gone. CLEAR: w_dest_ok, w_dest_line, w_dest_col, w_on, w_sel_line, w_sel_col.
ENDFORM. " rearrange_marbles *&---------------------------------------------------------------------* *& Form check_game_over *&---------------------------------------------------------------------* * Check game over when the remaining marbles are half than * the original marbles. Check for all cells with the marbles and * check adjacent cells (right, left, above and underneath cells) * with the value. If the marble found in any adjacent cell than * GAME is NOT OVER *----------------------------------------------------------------------* FORM check_game_over . STATICS: l_tot_half TYPEi. DATA: l_itab LIKE itab, l_itab_tmp LIKE itab. DATA: l_tmp_field(20), l_sel_col(1), l_tmp_col(2), l_ok TYPE flag, l_line TYPEi, l_tmp_line TYPEi. CLEAR: l_ok. FIELD-SYMBOLS: TYPEANY, TYPEANY. CHECK w_on ISINITIAL. l_tot_half = ABS( w_total / 2 ). CHECK w_rem < l_tot_half. LOOPAT itab INTO l_itab. l_line = sy-tabix. l_itab_tmp = l_itab. DO p_num TIMES. l_itab = l_itab_tmp. l_sel_col = sy-index. conv_i_c sy-index l_no_c. CLEAR l_name. CONCATENATE'L_ITAB-C' l_no_c INTO l_name. ASSIGN (l_name) TO. IFISINITIAL OR = '0'. CONTINUE. ENDIF. * IF = '1'. * l_ok = 'X'. * exit. * ENDIF. * right neighbour l_tmp_col = l_sel_col + 1. IF l_tmp_col < 9. CONCATENATE'L_ITAB-C' l_tmp_col INTO l_tmp_field. CONDENSE l_tmp_field. ASSIGN (l_tmp_field) TO. IF = '1'. l_tmp_col = l_sel_col + 2. IF l_tmp_col < 9. CONCATENATE'L_ITAB-C' l_tmp_col INTO l_tmp_field. CONDENSE l_tmp_field. ASSIGN (l_tmp_field) TO. IF = '0'. l_ok = 'X'. EXIT. ENDIF. ENDIF. ENDIF. ENDIF. * Check left l_tmp_col = l_sel_col - 1. IF l_tmp_col > 0. CONCATENATE'L_ITAB-C' l_tmp_col INTO l_tmp_field. CONDENSE l_tmp_field. ASSIGN (l_tmp_field) TO. IF = '1'. l_tmp_col = l_sel_col - 2. IF l_tmp_col > 0. CONCATENATE'L_ITAB-C' l_tmp_col INTO l_tmp_field. CONDENSE l_tmp_field. ASSIGN (l_tmp_field) TO. IF = '0'. l_ok = 'X'. EXIT. ENDIF. ENDIF. ENDIF. ENDIF. CONCATENATE'L_ITAB-C' l_no_c INTO l_tmp_field. CONDENSE l_tmp_field. ASSIGN (l_tmp_field) TO. * check Above l_tmp_line = l_line - 1. IF l_tmp_line > 0. CLEAR l_itab. READTABLE itab INTO l_itab INDEX l_tmp_line. IF = '1'. l_tmp_line = l_line - 2. IF l_tmp_line > 0. CLEAR l_itab. READTABLE itab INTO l_itab INDEX l_tmp_line. IF = '0'. l_ok = 'X'. EXIT. ENDIF. ENDIF. ENDIF. ENDIF. * Check underneath l_tmp_line = l_line + 1. IF l_tmp_line < 9. CLEAR l_itab. READTABLE itab INTO l_itab INDEX l_tmp_line. IF = '1'. l_tmp_line = l_line + 2. IF l_tmp_line < 9. CLEAR l_itab. READTABLE itab INTO l_itab INDEX l_tmp_line. IF = '0'. l_ok = 'X'. EXIT. ENDIF. ENDIF. ENDIF. ENDIF. ENDDO. IF l_ok = 'X'. EXIT. ENDIF. ENDLOOP. IF l_ok ISINITIAL. w_game_over = 'X'. MESSAGE s398(00) WITH'Game Over. Socre:' w_rem. PERFORM export_high_score. * leave program. ENDIF. ENDFORM. " check_game_over *&---------------------------------------------------------------------* *& Form export_high_score *&---------------------------------------------------------------------* * Export High Score to memory when the game is over *----------------------------------------------------------------------* FORM export_high_score . DATA: l_time TYPEi. CHECK w_exported ISINITIAL. GETTIMEFIELD w_end_time. l_time = w_end_time - w_st_time. w_score-uname = sy-uname. w_score-score = w_rem. w_score-time = l_time. APPEND w_score TO it_score. SORT it_score BY score time. LOOPAT it_score INTO w_score. w_score-srl = sy-tabix. MODIFY it_score FROM w_score. CLEAR w_score. ENDLOOP. DELETE it_score WHERE srl > 5. EXPORT it_score = it_score TODATABASE indx(zz) ID'ZGAME_MAR'. w_exported = 'X'. ENDFORM. " export_high_score *&---------------------------------------------------------------------* *& Form write_5_high_score *&---------------------------------------------------------------------* * Write 5 high scores *----------------------------------------------------------------------* FORM write_5_high_score . IMPORT it_score = it_score FROMDATABASE indx(zz) ID'ZGAME_MAR'. WRITE: /(12) 'User', (10) 'Score' RIGHT-JUSTIFIED , (10) 'Time' RIGHT-JUSTIFIED. WRITE: /(34) sy-uline. LOOPAT it_score INTO w_score. WRITE: /(12) w_score-uname, (10) w_score-score, (10) w_score-time. ENDLOOP. ENDFORM. " write_5_high_score